Add gnome-shell-extension-installer

This commit is contained in:
Manuel Thalmann 2023-04-04 01:33:58 +02:00
parent 16e910a842
commit 9482f7bf99
2 changed files with 13 additions and 9 deletions

View file

@ -1,15 +1,8 @@
#!/bin/bash #!/bin/bash
commandName=gnome-shell-extension-installer;
extensionLocation=/usr/share/gnome-shell/extensions; extensionLocation=/usr/share/gnome-shell/extensions;
contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
sudo apt install -y jq;
wget -O "$commandName" "https://github.com/brunelli/gnome-shell-extension-installer/raw/master/gnome-shell-extension-installer"; pushd "${BASH_SOURCE%/*}" > /dev/null;
sudo install "$commandName" /usr/local/bin; . "../../gnome-shell-extension-installer/install.sh";
popd > /dev/null;
rm -rf "$contextRoot";
uuids=(); uuids=();
for id in for id in
@ -43,3 +36,4 @@ do
done done
killall -SIGQUIT gnome-shell; killall -SIGQUIT gnome-shell;
popd > /dev/null;

View file

@ -0,0 +1,10 @@
#!/bin/bash
contextRoot="$(mktemp -d)";
commandName="gnome-shell-extension-installer";
pushd "$contextRoot" > /dev/null;
wget -O "$commandName" https://github.com/brunelli/gnome-shell-extension-installer/raw/master/gnome-shell-extension-installer;
sudo install "$commandName" /usr/local/bin;
popd > /dev/null;
rm -rf "$contextRoot";