-
Notifications
You must be signed in to change notification settings - Fork 4
/
Installer.sh
executable file
·192 lines (144 loc) · 3.62 KB
/
Installer.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#! /bin/bash
show_question() {
echo -e "\033[1;34m$@\033[0m"
}
show_dir() {
echo -e "\033[1;32m$@\033[0m"
}
show_error() {
echo -e "\033[1;31m$@\033[0m"
}
end() {
echo -e "\nExiting...\n"
exit 0
}
continue() {
show_question "\nDo you want to continue? (y)es, (n)o : \n"
read INPUT
case $INPUT in
[Yy]* ) ;;
[Nn]* ) end;;
* ) show_error "\nSorry, try again."; continue;;
esac
}
replace() {
show_question "\nFound an existing installation. Replace it? (y)es, (n)o :\n"
read INPUT
case $INPUT in
[Yy]* ) rm -rf $DEST_DIR/Emerald*;;
[Nn]* ) ;;
* ) show_error "\nSorry, try again."; replace $@;;
esac
}
setup() {
show_question "\nDo you want to set the theme now? (y)es, (n)o : \n"
read INPUT
case $INPUT in
[Yy]* ) themes;;
[Nn]* ) end;;
* ) show_error "\nSorry, try again."; setup;;
esac
}
themes() {
show_question "\n+------------------------------------------------------------------+
(1) Emerald
(2) Emerald-Dark
(3) Emerald-Matcha
+------------------------------------------------------------------+\n"
read INPUT
case $INPUT in
[1]* ) Emerald;;
[2]* ) Emerald-Dark;;
[3]* ) Emerald-Matcha;;
* ) show_error "\nSorry, try again."; themes;;
esac
}
Emerald() {
# Set Emerald Icon Theme
echo "Setting Emerald..."
gsettings set org.gnome.desktop.interface icon-theme Emerald
echo "Done!"
}
Emerald-Dark() {
# Set Emerald-Dark Icon Theme
echo "Setting Emerald-Dark..."
gsettings set org.gnome.desktop.interface icon-theme Emerald-Dark
echo "Done!"
}
Emerald-Matcha() {
# Set Emerald-Dark Icon Theme
echo "Setting Emerald-Matcha..."
gsettings set org.gnome.desktop.interface icon-theme Emerald-Matcha
echo "Done!"
}
install() {
# PREVIEW
# Show destination directory
echo -e "\nEmerald Gtk Theme will be installed in:\n"
show_dir "\t$DEST_DIR"
if [ "$UID" -eq "$ROOT_UID" ]; then
echo -e "\nIt will be available to all users."
else
echo -e "\nIf you want to make them available to all users, run this script as root."
fi
continue
# INSTALL
# Check destination directory
if [ ! -d $DEST_DIR ]; then
mkdir -p $DEST_DIR
elif [[ -d $DEST_DIR/Emerald && -d $DEST_DIR/Emerald-Dark ]]; then
replace $DEST_DIR
fi
echo -e "\nInstalling Emerald..."
# Copying files
cp -a Emerald* $DEST_DIR
# update icon caches
gtk-update-icon-cache $DEST_DIR/Emerald*
echo -e "\nInstallation complete!"
setup
}
remove() {
# PREVIEW
# Show installation directory
if [[ -d $DEST_DIR/Emerald ]]; then
echo -e "\nEmerald Icon Theme installed in:\n"
show_dir "\t$DEST_DIR"
if [ "$UID" -eq "$ROOT_UID" ]; then
echo -e "\nIt will remove for all users."
else
echo -e "\nIt will remove only for current user."
fi
continue
else
show_error "\nEmerald Icon Theme is not installed in:\n"
show_dir "\t$DEST_DIR\n"
end
fi
# REMOVE
echo -e "\nRemoving Emerald ..."
# Removing files
rm -rf $DEST_DIR/Emerald*
echo "Removing complete!"
echo "I hope to see you soon."
}
main() {
show_question "What you want to do: (i)nstall, (r)emove : \n"
read INPUT
case $INPUT in
[Ii]* ) install;;
[Rr]* ) remove;;
* ) show_error "\nSorry, try again."; main;;
esac
}
ROOT_UID=0
DEST_DIR=
# Destination directory
if [ "$UID" -eq "$ROOT_UID" ]; then
DEST_DIR="/usr/share/icons"
else
DEST_DIR="$HOME/.local/share/icons"
fi
echo -e "\e[1m\n+----------------------------------------------+"
echo -e "| Emerald Icon Theme Installer Script |"
echo -e "+----------------------------------------------+\n\e[0m"
main