Add gnome-shell-extension-installer
This commit is contained in:
parent
dc07cd68cc
commit
bc1bf40da9
2 changed files with 13 additions and 9 deletions
scripts/Common/Software/gnome-shell-extension-installer
10
scripts/Common/Software/gnome-shell-extension-installer /install.sh
Executable file
10
scripts/Common/Software/gnome-shell-extension-installer /install.sh
Executable 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";
|
Loading…
Add table
Add a link
Reference in a new issue