Add scripts for installing gnome exts on arch

This commit is contained in:
Manuel Thalmann 2023-04-04 02:51:23 +02:00
parent 653fb757d1
commit 3227a67dd0
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
. "../../Software/gnome-shell-extension-installer/install.sh";
. "../../../Common/Config/GnomeExtensions/install-extension.sh";
yay --noconfirm -Syu jq;
extensions=(
4907 # EasyEffects Preset Selector https://extensions.gnome.org/extension/4907/easyeffects-preset-selector/
1162 # Emoji Selector https://extensions.gnome.org/extension/1162/emoji-selector/
);
installExtension extensions;
popd > /dev/null;

View file

@ -0,0 +1,2 @@
#!/bin/bash
yay --noconfirm -Syu gnome-shell-extension-installer;