forked from vinceliuice/Qogir-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·426 lines (371 loc) · 15.9 KB
/
install.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
#!/bin/bash
ROOT_UID=0
DEST_DIR=
# Destination directory
if [ "$UID" -eq "$ROOT_UID" ]; then
DEST_DIR="/usr/share/themes"
else
DEST_DIR="$HOME/.themes"
fi
SRC_DIR=$(cd $(dirname $0) && pwd)
THEME_NAME=Qogir
THEME_VARIANTS=('' '-manjaro' '-ubuntu')
WIN_VARIANTS=('' '-win')
COLOR_VARIANTS=('' '-light' '-dark')
LOGO_VARIANTS=('' '-arch' '-budgie' '-debian' '-fedora' '-gnome' '-manjaro' '-ubuntu')
LOGO_NAME=''
usage() {
printf "%s\n" "Usage: $0 [OPTIONS...]"
printf "\n%s\n" "OPTIONS:"
printf " %-25s%s\n" "-d, --dest DIR" "Specify theme destination directory (Default: ${DEST_DIR})"
printf " %-25s%s\n" "-n, --name NAME" "Specify theme name (Default: ${THEME_NAME})"
printf " %-25s%s\n" "-l, --logo VARIANTS" "Specify nautilus logo [arch|budgie|debian|fedora|gnome|manjaro|ubuntu] (Default: qogir icon)"
printf " %-25s%s\n" "-w, --win VARIANTS..." "Specify titlebutton variant(s) [standard|square] (Default: All variants)"
printf " %-25s%s\n" "-t, --theme VARIANTS..." "Specify theme primary color variant(s) [standard|manjaro|ubuntu] (Default: All variants)"
printf " %-25s%s\n" "-c, --color VARIANTS..." "Specify theme color variant(s) [standard|light|dark] (Default: All variants)"
printf " %-25s%s\n" "-i, --image VARIANTS..." "Install theme with nautilus background image"
printf " %-25s%s\n" "-g, --gdm" "Install GDM theme, this option need root user authority! please run this with sudo"
printf " %-25s%s\n" "-r, --revert" "revert GDM theme, this option need root user authority! please run this with sudo"
printf " %-25s%s\n" "-h, --help" "Show this help"
}
install() {
local dest=${1}
local name=${2}
local theme=${3}
local win=${4}
local color=${5}
local logo=${6}
[[ ${color} == '-dark' ]] && local ELSE_DARK=${color}
[[ ${color} == '-light' ]] && local ELSE_LIGHT=${color}
local THEME_DIR=${dest}/${name}${theme}${win}${color}
[[ -d ${THEME_DIR} ]] && rm -rf ${THEME_DIR}
echo "Installing '${THEME_DIR}'..."
mkdir -p ${THEME_DIR}
cp -r ${SRC_DIR}/COPYING ${THEME_DIR}
cp -r ${SRC_DIR}/AUTHORS ${THEME_DIR}
echo "[Desktop Entry]" >> ${THEME_DIR}/index.theme
echo "Type=X-GNOME-Metatheme" >> ${THEME_DIR}/index.theme
echo "Name=${name}${theme}${win}${color}" >> ${THEME_DIR}/index.theme
echo "Comment=An Clean Gtk+ theme based on Flat Design" >> ${THEME_DIR}/index.theme
echo "Encoding=UTF-8" >> ${THEME_DIR}/index.theme
echo "" >> ${THEME_DIR}/index.theme
echo "[X-GNOME-Metatheme]" >> ${THEME_DIR}/index.theme
echo "GtkTheme=${name}${theme}${win}${color}" >> ${THEME_DIR}/index.theme
echo "MetacityTheme=${name}${theme}${win}${color}" >> ${THEME_DIR}/index.theme
echo "IconTheme=${name}${theme}${ELSE_DARK}" >> ${THEME_DIR}/index.theme
echo "CursorTheme=Adwaita" >> ${THEME_DIR}/index.theme
echo "ButtonLayout=menu:minimize,maximize,close" >> ${THEME_DIR}/index.theme
mkdir -p ${THEME_DIR}/gtk-2.0
cp -r ${SRC_DIR}/src/gtk-2.0/{apps.rc,panel.rc,main.rc,xfce-notify.rc} ${THEME_DIR}/gtk-2.0
cp -r ${SRC_DIR}/src/gtk-2.0/assets/assets${theme}${ELSE_DARK} ${THEME_DIR}/gtk-2.0/assets
cp -r ${SRC_DIR}/src/gtk-2.0/theme${theme}/gtkrc${color} ${THEME_DIR}/gtk-2.0/gtkrc
cp -r ${SRC_DIR}/src/gtk-2.0/menubar-toolbar${color}.rc ${THEME_DIR}/gtk-2.0/menubar-toolbar.rc
mkdir -p ${THEME_DIR}/gtk-3.0
cp -r ${SRC_DIR}/src/gtk-3.0/assets/assets${theme} ${THEME_DIR}/gtk-3.0/assets
if [[ -f ${SRC_DIR}/src/gtk-3.0/assets/logos/logo-${logo}.svg ]] ; then
cp -r ${SRC_DIR}/src/gtk-3.0/assets/logos/logo-${logo}.svg ${THEME_DIR}/gtk-3.0/assets/logo.svg
cp -r ${SRC_DIR}/src/gtk-3.0/assets/logos/logo@1.5-${logo}.svg ${THEME_DIR}/gtk-3.0/assets/logo@1.5.svg
cp -r ${SRC_DIR}/src/gtk-3.0/assets/logos/logo@2-${logo}.svg ${THEME_DIR}/gtk-3.0/assets/logo@2.svg
else
echo "${logo} icon not supported default icon will install..."
cp -r ${SRC_DIR}/src/gtk-3.0/assets/logos/logo-.svg ${THEME_DIR}/gtk-3.0/assets/logo.svg
cp -r ${SRC_DIR}/src/gtk-3.0/assets/logos/logo@1.5-.svg ${THEME_DIR}/gtk-3.0/assets/logo@1.5.svg
cp -r ${SRC_DIR}/src/gtk-3.0/assets/logos/logo@2-.svg ${THEME_DIR}/gtk-3.0/assets/logo@2.svg
fi
cp -r ${SRC_DIR}/src/gtk-3.0/assets/assets-common/* ${THEME_DIR}/gtk-3.0/assets
cp -r ${SRC_DIR}/src/gtk-3.0/theme${theme}/gtk${win}${color}.css ${THEME_DIR}/gtk-3.0/gtk.css
[[ ${color} != '-dark' ]] && \
cp -r ${SRC_DIR}/src/gtk-3.0/theme${theme}/gtk${win}-dark.css ${THEME_DIR}/gtk-3.0/gtk-dark.css
cp -r ${SRC_DIR}/src/gtk-3.0/assets/thumbnail${theme}${ELSE_DARK}.png ${THEME_DIR}/gtk-3.0/thumbnail.png
mkdir -p ${THEME_DIR}/gnome-shell
cp -r ${SRC_DIR}/src/gnome-shell/assets${theme}/common-assets ${THEME_DIR}/gnome-shell
cp -r ${SRC_DIR}/src/gnome-shell/assets${theme}/assets${ELSE_DARK} ${THEME_DIR}/gnome-shell/assets
cp -r ${SRC_DIR}/src/gnome-shell/background${ELSE_DARK}.jpeg ${THEME_DIR}/gnome-shell/background.jpeg
cp -r ${SRC_DIR}/src/gnome-shell/theme${theme}/gnome-shell${color}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
mkdir -p ${THEME_DIR}/cinnamon
cp -r ${SRC_DIR}/src/cinnamon/assets${theme}/common-assets ${THEME_DIR}/cinnamon
cp -r ${SRC_DIR}/src/cinnamon/assets${theme}/assets${ELSE_DARK} ${THEME_DIR}/cinnamon/assets
cp -r ${SRC_DIR}/src/cinnamon/theme${theme}/cinnamon${ELSE_DARK}.css ${THEME_DIR}/cinnamon/cinnamon.css
cp -r ${SRC_DIR}/src/cinnamon/thumbnail${theme}${ELSE_DARK}.png ${THEME_DIR}/cinnamon/thumbnail.png
mkdir -p ${THEME_DIR}/metacity-1
cp -r ${SRC_DIR}/src/metacity-1/assets${ELSE_LIGHT}${win}/*.png ${THEME_DIR}/metacity-1
cp -r ${SRC_DIR}/src/metacity-1/metacity-theme-3${win}.xml ${THEME_DIR}/metacity-1/metacity-theme-3.xml
cp -r ${SRC_DIR}/src/metacity-1/metacity-theme-1${ELSE_LIGHT}${win}.xml ${THEME_DIR}/metacity-1/metacity-theme-1.xml
cp -r ${SRC_DIR}/src/metacity-1/thumbnail${ELSE_LIGHT}.png ${THEME_DIR}/metacity-1/thumbnail.png
cd ${THEME_DIR}/metacity-1
ln -s metacity-theme-1.xml metacity-theme-2.xml
mkdir -p ${THEME_DIR}/xfwm4
cp -r ${SRC_DIR}/src/xfwm4/themerc${win}${ELSE_LIGHT} ${THEME_DIR}/xfwm4/themerc
cp -r ${SRC_DIR}/src/xfwm4/assets${win}${ELSE_LIGHT}/*.png ${THEME_DIR}/xfwm4
cp -r ${SRC_DIR}/src/plank ${THEME_DIR}
cp -r ${SRC_DIR}/src/unity ${THEME_DIR}
}
# Backup and install files related to GDM theme
GS_THEME_FILE="/usr/share/gnome-shell/gnome-shell-theme.gresource"
SHELL_THEME_FOLDER="/usr/share/gnome-shell/theme"
ETC_THEME_FOLDER="/etc/alternatives"
ETC_THEME_FILE="/etc/alternatives/gdm3.css"
UBUNTU_THEME_FILE="/usr/share/gnome-shell/theme/ubuntu.css"
UBUNTU_NEW_THEME_FILE="/usr/share/gnome-shell/theme/gnome-shell.css"
install_gdm() {
local GDM_THEME_DIR="${1}/${2}${3}${4}${5}"
if [[ -f "$GS_THEME_FILE" ]] && command -v glib-compile-resources >/dev/null ; then
echo "Installing '$GS_THEME_FILE'..."
cp -an "$GS_THEME_FILE" "$GS_THEME_FILE.bak"
glib-compile-resources \
--sourcedir="$GDM_THEME_DIR/gnome-shell" \
--target="$GS_THEME_FILE" \
"${SRC_DIR}/src/gnome-shell/gnome-shell-theme.gresource.xml"
fi
if [[ -f "$UBUNTU_THEME_FILE" && -f "$GS_THEME_FILE.bak" ]]; then
echo "Installing '$UBUNTU_THEME_FILE'..."
cp -an "$UBUNTU_THEME_FILE" "$UBUNTU_THEME_FILE.bak"
rm -rf "$GS_THEME_FILE"
mv "$GS_THEME_FILE.bak" "$GS_THEME_FILE"
cp -af "$GDM_THEME_DIR/gnome-shell/gnome-shell.css" "$UBUNTU_THEME_FILE"
fi
if [[ -f "$ETC_THEME_FILE" && -f "$GS_THEME_FILE.bak" ]]; then
echo "Installing Ubuntu gnome-shell theme..."
cp -an "$ETC_THEME_FILE" "$ETC_THEME_FILE.bak"
rm -rf "$ETC_THEME_FILE" "$GS_THEME_FILE"
mv "$GS_THEME_FILE.bak" "$GS_THEME_FILE"
[[ -d $SHELL_THEME_FOLDER/$THEME_NAME ]] && rm -rf $SHELL_THEME_FOLDER/$THEME_NAME
cp -r "$GDM_THEME_DIR/gnome-shell" "$SHELL_THEME_FOLDER/$THEME_NAME"
cd "$ETC_THEME_FOLDER"
ln -s "$SHELL_THEME_FOLDER/$THEME_NAME/gnome-shell.css" gdm3.css
fi
}
revert_gdm() {
if [[ -f "$GS_THEME_FILE.bak" ]]; then
echo "reverting '$GS_THEME_FILE'..."
rm -rf "$GS_THEME_FILE"
mv "$GS_THEME_FILE.bak" "$GS_THEME_FILE"
fi
if [[ -f "$UBUNTU_THEME_FILE.bak" ]]; then
echo "reverting '$UBUNTU_THEME_FILE'..."
rm -rf "$UBUNTU_THEME_FILE"
mv "$UBUNTU_THEME_FILE.bak" "$UBUNTU_THEME_FILE"
fi
if [[ -f "$ETC_THEME_FILE.bak" ]]; then
echo "reverting Ubuntu gnome-shell theme..."
rm -rf "$ETC_THEME_FILE"
mv "$ETC_THEME_FILE.bak" "$ETC_THEME_FILE"
[[ -d $SHELL_THEME_FOLDER/$THEME_NAME ]] && rm -rf $SHELL_THEME_FOLDER/$THEME_NAME
fi
}
NBG_N="background-image: none;"
NBG_I="@extend %nautilus_backimage;"
# check command avalibility
function has_command() {
command -v $1 > /dev/null
}
install_package() {
if [ ! "$(which sassc 2> /dev/null)" ]; then
echo "\n sassc needs to be installed to generate the css."
if has_command zypper; then
read -p "[ trusted ] specify the root password : " -t 20 -s
[[ -n "$REPLY" ]] && {
echo "\n running: sudo zypper in sassc "
sudo -S <<< $REPLY zypper in sassc
}|| {
echo "\n Operation canceled Bye"
exit 1
}
elif has_command apt; then
read -p "[ trusted ] specify the root password : " -t 20 -s
[[ -n "$REPLY" ]] && {
echo "\n running: sudo apt install sassc "
sudo -S <<< $REPLY apt install sassc
}|| {
echo "\n Operation canceled Bye"
exit 1
}
elif has_command dnf; then
read -p "[ trusted ] specify the root password : " -t 20 -s
[[ -n "$REPLY" ]] && {
echo "\n running: sudo dnf install sassc "
sudo -S <<< $REPLY dnf install sassc
}|| {
echo "\n Operation canceled Bye"
exit 1
}
elif has_command yum; then
read -p "[ trusted ] specify the root password : " -t 20 -s
[[ -n "$REPLY" ]] && {
echo "\n running: sudo yum install sassc "
sudo -S <<< $REPLY yum install sassc
}|| {
echo "\n Operation canceled Bye"
exit 1
}
elif has_command pacman; then
read -p "[ trusted ] specify the root password : " -t 20 -s
[[ -n "$REPLY" ]] && {
echo "\n running: sudo pacman -S --noconfirm sassc "
sudo -S <<< $REPLY pacman -S --noconfirm sassc
}|| {
echo "\n Operation canceled Bye"
exit 1
}
fi
fi
}
parse_sass() {
cd ${SRC_DIR} && ./parse-sass.sh
}
install_theme() {
for theme in "${themes[@]-${THEME_VARIANTS[@]}}"; do
for win in "${wins[@]-${WIN_VARIANTS[@]}}"; do
for color in "${colors[@]-${COLOR_VARIANTS[@]}}"; do
install "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${theme}" "${win}" "${color}" "${logo:-${LOGO_NAME}}"
done
done
done
}
install_img() {
cd ${SRC_DIR}/src/_sass/gtk/apps
cp -an _gnome.scss _gnome.scss.bak
sed -i "s/$NBG_N/$NBG_I/g" _gnome.scss
echo -e "Specify theme with nautilus background image ..."
}
restore_img() {
cd ${SRC_DIR}/src/_sass/gtk/apps
[[ -d _gnome.scss.bak ]] && rm -rf _gnome.scss
mv _gnome.scss.bak _gnome.scss
echo -e "Restore scss files ..."
}
while [[ $# -gt 0 ]]; do
case "${1}" in
-d|--dest)
dest="${2}"
if [[ ! -d "${dest}" ]]; then
echo "ERROR: Destination directory does not exist."
exit 1
fi
shift 2
;;
-n|--name)
name="${2}"
shift 2
;;
-l|--logo)
logo="${2}"
shift 2
;;
-g|--gdm)
gdm='true'
shift 1
;;
-r|--revert)
revert='true'
shift 1
;;
-i|--image)
image='true'
shift
;;
-w|--win)
shift
for win in "${@}"; do
case "${win}" in
standard)
wins+=("${WIN_VARIANTS[0]}")
shift 1
;;
square)
wins+=("${WIN_VARIANTS[1]}")
shift 1
;;
-*|--*)
break
;;
*)
echo "ERROR: Unrecognized color variant '$1'."
echo "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-t|--theme)
shift
for theme in "${@}"; do
case "${theme}" in
standard)
themes+=("${THEME_VARIANTS[0]}")
shift 1
;;
manjaro)
themes+=("${THEME_VARIANTS[1]}")
shift 1
;;
ubuntu)
themes+=("${THEME_VARIANTS[2]}")
shift 1
;;
-*|--*)
break
;;
*)
echo "ERROR: Unrecognized color variant '$1'."
echo "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-c|--color)
shift
for color in "${@}"; do
case "${color}" in
standard)
colors+=("${COLOR_VARIANTS[0]}")
shift 1
;;
light)
colors+=("${COLOR_VARIANTS[1]}")
shift 1
;;
dark)
colors+=("${COLOR_VARIANTS[2]}")
shift 1
;;
-*|--*)
break
;;
*)
echo "ERROR: Unrecognized color variant '$1'."
echo "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-h|--help)
usage
exit 0
;;
*)
echo "ERROR: Unrecognized installation option '$1'."
echo "Try '$0 --help' for more information."
exit 1
;;
esac
done
if [[ "${gdm:-}" != 'true' && "${revert:-}" != 'true' && "${image:-}" != 'true' ]]; then
install_theme
fi
if [[ "${gdm:-}" == 'true' && "${revert:-}" != 'true' && "${image:-}" != 'true' && "$UID" -eq "$ROOT_UID" ]]; then
install_theme && install_gdm "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${theme}" "${color}"
fi
if [[ "${gdm:-}" != 'true' && "${revert:-}" == 'true' && "$UID" -eq "$ROOT_UID" ]]; then
revert_gdm
fi
if [[ "${gdm:-}" != 'true' && "${image:-}" == 'true' ]]; then
install_package && install_img && parse_sass && install_theme && restore_img && parse_sass
fi
if [[ "${gdm:-}" == 'true' && "${revert:-}" != 'true' && "${image:-}" == 'true' && "$UID" -eq "$ROOT_UID" ]]; then
install_package && install_img && parse_sass && install_theme && restore_img && parse_sass && install_gdm
fi
echo
echo Done.