-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
252 lines (241 loc) · 6.27 KB
/
install.sh
File metadata and controls
252 lines (241 loc) · 6.27 KB
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
#! /usr/bin/env bash
# Exit Immediately if a command fails
set -o errexit
readonly REPO_DIR="$(dirname "$(readlink -m "${0}")")"
source "${REPO_DIR}/core.sh"
usage() {
cat << EOF
Usage: $0 [OPTION]...
OPTIONS:
-t, --theme Background theme variant(s) [forest|mojave|mountain|wave] (default is forest)
-p, --type Theme style variant(s) [window|float|sharp|blur] (default is window)
-i, --side Picture display side [left|right] (default is left)
-c, --color Background color variant(s) [dark|light] (default is dark)
-s, --screen Screen display variant(s) [1080p|2k|4k] (default is 1080p)
-l, --logo Show a logo on picture [default|system] (default: a mountain logo)
-r, --remove Remove/Uninstall theme (must add theme options, default is Elegant-forest-window-left-dark)
-b, --boot Install theme into '/boot/grub' or '/boot/grub2'
-h, --help Show this help
EOF
}
#######################################################
# :::::: A R G U M E N T H A N D L I N G :::::: #
#######################################################
while [[ $# -gt 0 ]]; do
PROG_ARGS+=("${1}")
dialog='false'
case "${1}" in
-r|--remove)
remove='true'
shift
;;
-b|--boot)
install_boot='true'
if [[ -d "/boot/grub" ]]; then
GRUB_DIR="/boot/grub/themes"
elif [[ -d "/boot/grub2" ]]; then
GRUB_DIR="/boot/grub2/themes"
fi
shift
;;
-t|--theme)
shift
for theme in "${@}"; do
case "${theme}" in
forest)
themes+=("${THEME_VARIANTS[0]}")
shift
;;
mojave)
themes+=("${THEME_VARIANTS[1]}")
shift
;;
mountain)
themes+=("${THEME_VARIANTS[2]}")
shift
;;
wave)
themes+=("${THEME_VARIANTS[3]}")
shift
;;
-*)
break
;;
*)
prompt -e "ERROR: Unrecognized theme variant '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-p|--type)
shift
for type in "${@}"; do
case "${type}" in
window)
types+=("${TYPE_VARIANTS[0]}")
shift
;;
float)
types+=("${TYPE_VARIANTS[1]}")
shift
;;
sharp)
types+=("${TYPE_VARIANTS[2]}")
shift
;;
blur)
types+=("${TYPE_VARIANTS[3]}")
shift
;;
-*)
break
;;
*)
prompt -e "ERROR: Unrecognized type variant '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-i|--side)
shift
for side in "${@}"; do
case "${side}" in
left)
sides+=("${SIDE_VARIANTS[0]}")
shift
;;
right)
sides+=("${SIDE_VARIANTS[1]}")
shift
;;
-*)
break
;;
*)
prompt -e "ERROR: Unrecognized side variant '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-c|--color)
shift
for color in "${@}"; do
case "${color}" in
dark)
colors+=("${COLOR_VARIANTS[0]}")
shift
;;
light)
colors+=("${COLOR_VARIANTS[1]}")
shift
;;
-*)
break
;;
*)
prompt -e "ERROR: Unrecognized color variant '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-s|--screen)
shift
for screen in "${@}"; do
case "${screen}" in
1080p)
screens+=("${SCREEN_VARIANTS[0]}")
shift
;;
2k)
screens+=("${SCREEN_VARIANTS[1]}")
shift
;;
4k)
screens+=("${SCREEN_VARIANTS[2]}")
shift
;;
-*)
break
;;
*)
prompt -e "ERROR: Unrecognized screen variant '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-l|--logo)
shift
for logo in "${@}"; do
case "${logo}" in
default)
logoicon="Default"
shift
;;
system)
logoicon="$(lsb_release -i | cut -d ' ' -f 2 | cut -d ' ' -f 2)"
shift
;;
-*)
break
;;
*)
prompt -e "ERROR: Unrecognized logo variant '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
;;
-h|--help)
usage
exit 0
;;
*)
prompt -e "ERROR: Unrecognized installation option '$1'."
prompt -i "Try '$0 --help' for more information."
exit 1
;;
esac
done
#############################
# :::::: M A I N :::::: #
#############################
# Show terminal user interface for better use
if [[ "${dialog:-}" == 'false' ]]; then
if [[ "${remove:-}" != 'true' ]]; then
for theme in "${themes[@]-${THEME_VARIANTS[0]}}"; do
for type in "${types[@]-${TYPE_VARIANTS[0]}}"; do
for side in "${sides[@]-${SIDE_VARIANTS[0]}}"; do
for color in "${colors[@]-${COLOR_VARIANTS[0]}}"; do
for screen in "${screens[@]-${SCREEN_VARIANTS[0]}}"; do
install "${theme}" "${type}" "${side}" "${color}" "${screen}"
done
done
done
done
done
elif [[ "${remove:-}" == 'true' ]]; then
for theme in "${themes[@]-${THEME_VARIANTS[0]}}"; do
for type in "${types[@]-${TYPE_VARIANTS[0]}}"; do
for side in "${sides[@]-${SIDE_VARIANTS[0]}}"; do
for color in "${colors[@]-${COLOR_VARIANTS[0]}}"; do
remove "${theme}" "${type}" "${side}" "${color}"
done
done
done
done
fi
else
dialog_installer
fi
exit 0