Add gnome-shell-extension-installer

This commit is contained in:
Manuel Thalmann 2023-04-04 01:33:58 +02:00
parent dc07cd68cc
commit bc1bf40da9
2 changed files with 13 additions and 9 deletions
scripts/Common/Software/gnome-shell-extension-installer

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";