This repository has been archived by the owner on May 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed login theme installer and asset duplicates
- Loading branch information
Juha Kukkonen
committed
May 28, 2017
1 parent
aeb9a5b
commit 0e4be82
Showing
5 changed files
with
148 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
#!/bin/bash | ||
|
||
# Used to install / unistall UNITED Gnome login theme. | ||
# Currently only for Ubuntu variant. | ||
|
||
gnomeShell=/usr/share/gnome-shell | ||
res=$gnomeShell/gnome-shell-theme.gresource | ||
|
||
function showHelp { | ||
echo "Usage. united-login-installer [ -iu ] [ variant ]. E.g. united-login-installer -i | ||
Used to install UNITED Gnome login theme. Can be also used to uninstall login themes. | ||
-i = Install | ||
-u = Uninstall | ||
-h | --help | ? = Help | ||
variant = Variation of login theme. E.g ubuntu, opensuse or fedora."; | ||
} | ||
|
||
function exists { | ||
if [ ! -d $1 ]; then echo "Directory \"$1\" does not exist, exiting" && exit 1; fi; | ||
} | ||
|
||
function checkStatus { | ||
status=$?; | ||
if [ "$status" -gt 0 ]; then echo "Failure in execution, exiting with status $status" && exit $status; fi; | ||
} | ||
|
||
function install { | ||
echo "Installing $1 login theme..."; | ||
# If back up resource is found uninstall old before. | ||
if [ -f $res.bak ]; then | ||
uninstall; | ||
fi; | ||
variation=$1; | ||
|
||
exists "$gnomeShell"; | ||
|
||
echo "Asking sudo rights to move original theme as back up."; | ||
echo "mv $res $res.bak"; | ||
|
||
sudo mv $res $res.bak | ||
|
||
echo "Checking does $variation folder exist in current directory."; | ||
exists "`pwd`/$variation"; | ||
|
||
echo "Find compile command"; | ||
compile=`which glib-compile-resources` | ||
|
||
test ${#compile} -eq 0 && echo "Compile command not found, exiting" && exist 1; | ||
echo "Compile command found: $compile..."; | ||
|
||
cd "`pwd`/$variation"; | ||
|
||
echo "Compiling gnome-shell-theme.gresource.xml..."; | ||
echo "$? fooooooooooooooooooooooooooooooooo" | ||
$compile gnome-shell-theme.gresource.xml | ||
echo "$? fooooooooooooooooooooooooooooooooo" | ||
checkStatus; | ||
|
||
echo "Copying compiled gnome shell theme to $gnomeShell"; | ||
sudo cp gnome-shell-theme.gresource $gnomeShell; | ||
|
||
echo "$? fooooooooooooooooooooooooooooooooo" | ||
if [ "$status" -gt 0 ]; then echo "Failure in execution, exiting with status $status" && exit $status; fi; | ||
|
||
rm -f gnome-shell-theme.gresource; | ||
|
||
echo "Completed!"; | ||
} | ||
|
||
function uninstall { | ||
test ! -f $res.bak && echo "Back up file does not exists, cannot proceed unistall, exiting" && exit 1; | ||
|
||
echo "Uninstalling current theme and restoring previous theme..."; | ||
echo "Asking sudo rights to restore."; | ||
sudo rm -f $res; | ||
sudo mv $res.bak $res | ||
|
||
echo "Completed!"; | ||
} | ||
|
||
function reboot { | ||
echo "Do you wish to reboot now, changes take affect after reboot? (y/N)"; | ||
read allowReboot; | ||
if [ "$allowReboot" == "y" ]; then | ||
rebootCommand=`which reboot`; | ||
test ${#rebootCommand} -eq 0 && echo "Reboot command not found, exiting" && exist 1; | ||
|
||
echo "Reboot command found: $rebootCommand"; | ||
|
||
sudo $rebootCommand now; | ||
fi; | ||
|
||
echo "Press alt + F2 and then type r to restart gnome shell. This makes login theme party available."; | ||
} | ||
|
||
test ${#1} -eq 0 && showHelp && exit 1; | ||
|
||
if [[ "$1" == "-h" || "$1" == "--help" || "$1" == "?" ]]; then showHelp && exit 1; fi; | ||
|
||
if [[ "$1" != "-"* && "$1" != "?" ]]; then showHelp && exit 1; fi; | ||
|
||
mode=${1:1:1}; | ||
|
||
case $mode in | ||
i) | ||
echo "Installing..."; | ||
variant="$2"; | ||
if [ "$variant" == "" ]; then | ||
while [ "$variant" == "" ]; do | ||
|
||
echo "What variant you would like to use?"; | ||
|
||
read variant; | ||
if [ ! -d `pwd`/$variant ]; then echo "Variant `pwd`/$variant does not exist!" && variant=""; fi; | ||
|
||
done; | ||
fi; | ||
install $variant; | ||
checkStatus; | ||
reboot; | ||
;; | ||
u) | ||
echo "Uninstalling..."; | ||
uninstall; | ||
checkStatus; | ||
reboot; | ||
break | ||
;; | ||
*) | ||
showHelp; | ||
;; | ||
esac | ||
|
||
exit 0; |