-
Notifications
You must be signed in to change notification settings - Fork 48
/
install.sh
executable file
·329 lines (279 loc) · 10.1 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
#! /usr/bin/env bash
ROOT_UID=0
DEST_DIR=
# Destination directory
if [[ "$UID" -eq "$ROOT_UID" ]]; then
DEST_DIR="/usr/share/themes"
elif [[ -n "$XDG_DATA_HOME" ]]; then
DEST_DIR="$XDG_DATA_HOME/themes"
elif [[ -d "$HOME/.themes" ]]; then
DEST_DIR="$HOME/.themes"
elif [[ -d "$HOME/.local/share/themes" ]]; then
DEST_DIR="$HOME/.local/share/themes"
else
DEST_DIR="$HOME/.themes"
fi
SRC_DIR=$(cd $(dirname $0) && pwd)
THEME_NAME=Layan
COLOR_VARIANTS=('' '-Light' '-Dark')
SOLID_VARIANTS=('' '-Solid')
if [[ "$(command -v gnome-shell)" ]]; then
gnome-shell --version
SHELL_VERSION="$(gnome-shell --version | cut -d ' ' -f 3 | cut -d . -f -1)"
if [[ "${SHELL_VERSION:-}" -ge "46" ]]; then
GS_VERSION="46-0"
elif [[ "${SHELL_VERSION:-}" -ge "44" ]]; then
GS_VERSION="44-0"
elif [[ "${SHELL_VERSION:-}" -ge "42" ]]; then
GS_VERSION="42-0"
elif [[ "${SHELL_VERSION:-}" -ge "40" ]]; then
GS_VERSION="40-0"
else
GS_VERSION="3-36"
fi
else
echo "'gnome-shell' not found, using styles for last gnome-shell version available."
GS_VERSION="46-0"
fi
usage() {
cat << EOF
Usage: $0 [OPTION]...
OPTIONS:
-d, --dest DIR Specify destination directory (Default: $DEST_DIR)
-n, --name NAME Specify theme name (Default: $THEME_NAME)
-c, --color VARIANTS Specify theme color variant(s) [standard|light|dark] (Default: All variants)
-l, --libadwaita Install link to gtk4 config for theming libadwaita
-r, --remove,
-u, --uninstall Uninstall/Remove installed themes
-h, --help Show help
EOF
}
install() {
local dest=${1}
local name=${2}
local color=${3}
local solid=${4}
[[ ${color} == '-Dark' ]] && local ELSE_DARK=${color}
[[ ${color} == '-Light' ]] && local ELSE_LIGHT=${color}
local THEME_DIR=${dest}/${name}${color}${solid}
[[ -d ${THEME_DIR} ]] && rm -rf ${THEME_DIR}
echo "Installing '${THEME_DIR}'..."
mkdir -p ${THEME_DIR}
cp -ur ${SRC_DIR}/COPYING ${THEME_DIR}
cp -ur ${SRC_DIR}/AUTHORS ${THEME_DIR}
echo "[Desktop Entry]" >> ${THEME_DIR}/index.theme
echo "Type=X-GNOME-Metatheme" >> ${THEME_DIR}/index.theme
echo "Name=${name}${color}${solid}" >> ${THEME_DIR}/index.theme
echo "Comment=An Flat Gtk+ theme based on Material 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}${color}${solid}" >> ${THEME_DIR}/index.theme
echo "MetacityTheme=${name}${color}${solid}" >> ${THEME_DIR}/index.theme
echo "IconTheme=Tela${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}/gnome-shell
cp -ur ${SRC_DIR}/src/gnome-shell/{*.svg,noise-texture.png,pad-osd.css} ${THEME_DIR}/gnome-shell
cp -ur ${SRC_DIR}/src/gnome-shell/gnome-shell-theme.gresource.xml ${THEME_DIR}/gnome-shell
cp -ur ${SRC_DIR}/src/gnome-shell/assets${ELSE_DARK} ${THEME_DIR}/gnome-shell/assets
cp -ur ${SRC_DIR}/src/gnome-shell/common-assets/*.svg ${THEME_DIR}/gnome-shell/assets
cp -ur ${SRC_DIR}/src/gnome-shell/shell-${GS_VERSION}/gnome-shell${ELSE_DARK}.css ${THEME_DIR}/gnome-shell/gnome-shell.css
mkdir -p ${THEME_DIR}/gtk-2.0
cp -ur ${SRC_DIR}/src/gtk-2.0/{apps.rc,hacks.rc,main.rc,panel.rc} ${THEME_DIR}/gtk-2.0
cp -ur ${SRC_DIR}/src/gtk-2.0/assets${ELSE_DARK} ${THEME_DIR}/gtk-2.0/assets
cp -ur ${SRC_DIR}/src/gtk-2.0/gtkrc${color} ${THEME_DIR}/gtk-2.0/gtkrc
cp -ur ${SRC_DIR}/src/gtk/assets ${THEME_DIR}/gtk-assets
mkdir -p ${THEME_DIR}/gtk-3.0
ln -sf ../gtk-assets ${THEME_DIR}/gtk-3.0/assets
cp -ur ${SRC_DIR}/src/gtk/3.0/gtk${color}${solid}.css ${THEME_DIR}/gtk-3.0/gtk.css
cp -ur ${SRC_DIR}/src/gtk/3.0/gtk-Dark${solid}.css ${THEME_DIR}/gtk-3.0/gtk-dark.css
mkdir -p ${THEME_DIR}/gtk-4.0
ln -sf ../gtk-assets ${THEME_DIR}/gtk-4.0/assets
cp -ur ${SRC_DIR}/src/gtk/4.0/gtk${color}${solid}.css ${THEME_DIR}/gtk-4.0/gtk.css
cp -ur ${SRC_DIR}/src/gtk/4.0/gtk-Dark${solid}.css ${THEME_DIR}/gtk-4.0/gtk-dark.css
mkdir -p ${THEME_DIR}/xfwm4
cp -ur ${SRC_DIR}/src/xfwm4/assets${ELSE_LIGHT}/*.png ${THEME_DIR}/xfwm4
cp -ur ${SRC_DIR}/src/xfwm4/themerc${ELSE_LIGHT} ${THEME_DIR}/xfwm4/themerc
cp -ur ${SRC_DIR}/src/plank ${THEME_DIR}
}
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|--libadwaita)
libadwaita='true'
shift
;;
-r|-u|--remove|--uninstall)
remove='true'
shift
;;
-c|--color)
shift
for color in "${@}"; do
case "${color}" in
standard)
colors+=("${COLOR_VARIANTS[0]}")
lcolors+=("${COLOR_VARIANTS[0]}")
shift
;;
light)
colors+=("${COLOR_VARIANTS[1]}")
lcolors+=("${COLOR_VARIANTS[1]}")
shift
;;
dark)
colors+=("${COLOR_VARIANTS[2]}")
lcolors+=("${COLOR_VARIANTS[2]}")
shift
;;
-*|--*)
break
;;
*)
echo "ERROR: Unrecognized color variant '$1'."
echo "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-s|--solid)
shift
for solid in "${@}"; do
case "${solid}" in
standard)
solids+=("${SOLID_VARIANTS[0]}")
shift
;;
solid)
solids+=("${SOLID_VARIANTS[1]}")
shift
;;
-*|--*)
break
;;
*)
echo "ERROR: Unrecognized solid 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 [[ "${#colors[@]}" -eq 0 ]] ; then
colors=("${COLOR_VARIANTS[@]}")
fi
if [[ "${#solids[@]}" -eq 0 ]] ; then
solids=("${SOLID_VARIANTS[@]}")
fi
uninstall_link() {
rm -rf "${HOME}/.config/gtk-4.0"/{assets,gtk.css,gtk-dark.css}
}
link_libadwaita() {
local dest=${1}
local name=${2}
local lcolor=${3}
local solid=${4}
local THEME_DIR="${1}/${2}${3}${4}"
echo -e "\nLink '$THEME_DIR/gtk-4.0' to '${HOME}/.config/gtk-4.0' for libadwaita..."
mkdir -p "${HOME}/.config/gtk-4.0"
ln -sf "${THEME_DIR}/gtk-4.0/assets" "${HOME}/.config/gtk-4.0/assets"
ln -sf "${THEME_DIR}/gtk-4.0/gtk.css" "${HOME}/.config/gtk-4.0/gtk.css"
ln -sf "${THEME_DIR}/gtk-4.0/gtk-dark.css" "${HOME}/.config/gtk-4.0/gtk-dark.css"
}
clean() {
local dest=${1}
local name=${2}
local color=${3}
local solid=${4}
local THEME_DIR=${dest}/${name}${color}${solid}
if [[ ${color} == '' && ${solid} == '' ]]; then
this=empty
elif [[ -d ${THEME_DIR} ]]; then
rm -rf ${THEME_DIR}
echo -e "Find: ${THEME_DIR} ! removing it ..."
fi
}
link_theme() {
for lcolor in "${lcolors[@]-${COLOR_VARIANTS[1]}}"; do
for solid in "${solids[0]}"; do
link_libadwaita "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${lcolor}" "${solid}"
done
done
}
uninstall() {
local dest=${1}
local name=${2}
local color=${3}
local solid=${4}
local THEME_DIR=${dest}/${name}${color}${solid}
[[ -d "$THEME_DIR" ]] && rm -rf "$THEME_DIR" && echo -e "Uninstalling "$THEME_DIR" ..."
}
clean_theme() {
for color in '' '-light' '-dark'; do
for solid in '' '-solid'; do
clean "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${solid}"
done
done
if [[ "$DEST_DIR" == "$HOME/.themes" ]]; then
local dest="$HOME/.local/share/themes"
fi
for color in "${COLOR_VARIANTS[@]}"; do
for solid in "${SOLID_VARIANTS[@]}"; do
uninstall "${dest}" "${name:-${THEME_NAME}}" "${color}" "${solid}"
done
done
}
uninstall_theme() {
for color in "${COLOR_VARIANTS[@]}"; do
for solid in "${SOLID_VARIANTS[@]}"; do
uninstall "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${solid}"
done
done
}
install_theme() {
for color in "${colors[@]}"; do
for solid in "${solids[@]}"; do
install "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${solid}"
done
done
}
clean_theme
if [[ "${remove:-}" != 'true' ]]; then
install_theme
if [[ "$libadwaita" == 'true' ]]; then
uninstall_link && link_theme
fi
else
if [[ "$libadwaita" == 'true' ]]; then
echo -e "\nUninstall ${HOME}/.config/gtk-4.0 links ..."
uninstall_link
else
echo && uninstall_theme && uninstall_link
fi
fi
echo
echo Done.