-
Notifications
You must be signed in to change notification settings - Fork 44
/
utils.sh
executable file
·399 lines (341 loc) · 8.02 KB
/
utils.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
#
# Messaging
#
BLUE='\033[0;34m'
GREEN='\033[0;32m'
CYAN='\033[0;36m'
RED='\033[0;31m'
RESET='\033[0m'
function message () {
local COLOR=${2:-$CYAN}
echo -e "${COLOR}$@$RESET"
if [ "$LOG" != /dev/stdout ]; then
echo "$1" >> "$LOG"
fi
}
function comma-separated () {
local R
for A in "$@"; do
if [ -z "$R" ]; then
R=$1
else
R="$R, $A"
fi
done
echo $R
}
function sed-escape () {
echo $1 | sed 's/[\/&]/\\&/g'
}
#
# Platform
#
function os-name () {
local OS=$(lsb_release --id --short 2> /dev/null)
if [ -z "$OS" ]; then
OS=$(cat /etc/*-release | grep '^NAME=' | cut --delimiter='=' --fields=2 | sed -e 's/^"//' -e 's/"$//')
fi
if [ -z "$OS" ]; then
OS=$(head -1 /etc/issue | cut --delimiter=' ' --fields=1)
fi
echo "$OS"
}
function gnome-version () {
gnome-shell --version 2> /dev/null | cut --delimiter=' ' --fields=3 | cut --delimiter='.' --fields=1,2
}
function gtk-version () {
local VERSION=$(dpkg-version libgtk-3-0)
if [ -z "$VERSION" ]; then
VERSION=$(dpkg-version libgtk2.0-0)
fi
if [ -z "$VERSION" ]; then
VERSION=$(rpm-version gtk3)
fi
if [ -z "$VERSION" ]; then
VERSION=$(rpm-version gtk2)
fi
if [ -z "$VERSION" ]; then
VERSION=$(pacman-version gtk3)
fi
echo "$VERSION"
}
function dpkg-version () {
local PKG=$1
dpkg -s "$PKG" 2> /dev/null | grep '^Version' | cut --delimiter=' ' --fields=2- | cut --delimiter='.' --fields=1,2
}
function rpm-version () {
local PKG=$1
rpm --query --queryformat %{VERSION} "$PKG" 2> /dev/null | cut --delimiter='.' --fields=1,2
}
function pacman-version () {
local PKG=$1
pacman -Si "$PKG" | grep Version | awk '{ print $3; }' | cut --delimiter='.' --fields=1,2
}
#
# Git Repositories
#
function repository-timestamp () {
git log --max-count=1 --date=short --pretty=format:%cr
}
function repository-id () {
git log --max-count=1 --pretty=format:%H
}
#
# Key-value
#
function get-value () { # [key] [db]
local KEY=$1
local DB=$2
if [ -f "$DB" ]; then
sed --quiet "s/^$KEY \(.*\)/\1/p" "$DB"
fi
}
function set-value () { # [key] [value] [db]
local KEY=$1
local VALUE=$2
local DB=$3
if grep --quiet --no-messages "^$KEY " "$DB"; then
sed --in-place "s/^\($KEY \)\(.*\)/\1$(sed-escape "$VALUE")/" "$DB" &>> "$LOG"
else
echo "$KEY $VALUE" >> "$DB"
fi
}
#
# Themes
#
function prepare () { # [site] [account] [repo] [branch] [themes...]
local SITE=$1
local ACCOUNT=$2
local REPO=$3
local BRANCH=$4
local URL=https://$SITE.com/$ACCOUNT/$REPO
local KEY="$SITE|$ACCOUNT|$REPO|$BRANCH"
local LAST_ID=$(get-value "$KEY" "$CONFIG_FILE")
local NAMES=$(comma-separated "${@:5}")
message "$NAMES:"
if [ "$LAST_ID" == skip ]; then
message ' Configured to skip.'
return 2
fi
message " Fetching repository: $URL ..."
# Shallow git clone
cleanup "$@"
mkdir --parents "$WORK" &>> "$LOG"
cd "$WORK" &>> "$LOG"
git clone "$URL" --branch "$BRANCH" --depth 1 "$REPO" &>> "$LOG"
cd "$WORK/$REPO" &>> "$LOG"
CURRENT_ID=$(repository-id)
if [ "$CURRENT_ID" == "$LAST_ID" ]; then
message " Last updated $(repository-timestamp)."
message ' Already installed.'
cleanup "$@"
return 1
else
message " Last updated $(repository-timestamp)." "$BLUE"
message ' Installing...' "$GREEN"
if [ "$SLOW" == true ]; then
message ' WARNING: Installation takes an especially long time due to rendering of all assets, please be patient!' "$BLUE"
fi
cd "$THEMES" &>> "$LOG"
rm --recursive --force "${@:5}" &>> "$LOG"
cd "$WORK/$REPO" &>> "$LOG"
fix-inkscape
return 0
fi
}
function cleanup () { # [site] [account] [repo] [branch]
local SITE=$1
local ACCOUNT=$2
local REPO=$3
local BRANCH=$4
local KEY="$SITE|$ACCOUNT|$REPO|$BRANCH"
rm --recursive --force "$WORK/$REPO" &>> "$LOG"
set-value "$KEY" "$CURRENT_ID" "$CONFIG_FILE"
}
function theme-cp () { # [site] [account] [repo] [branch] [themes...]
local SITE=$1
local REPO=$3
if ! prepare "$@"; then
return 0
fi
if ! cp --recursive "${@:5}" "$THEMES/" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-mv () { # [site] [account] [repo] [branch] [theme]
local SITE=$1
local REPO=$3
local THEME=$5
if ! prepare "$@"; then
return 0
fi
if ! mv "$WORK/$REPO" "$THEMES/$THEME" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-mv-dir () { # [site] [account] [repo] [branch] [theme]
local SITE=$1
local REPO=$3
local THEME=$5
if ! prepare "$1" "$2" "$3" "$4" "$(basename "$THEME")"; then
return 0
fi
if ! mv "$WORK/$REPO/$THEME" "$THEMES/" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-tarball () { # [site] [account] [repo] [branch] [file] [dir] [themes...]
local SITE=$1
local REPO=$3
local FILE=$5
local DIR=$6
if ! prepare "$1" "$2" "$3" "$4" "${@:7}"; then
return 0
fi
if ! cd "$WORK/$REPO" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! tar xvf "$FILE" "$DIR" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! cd "$DIR" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! mv * "$THEMES/" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-execute () { # [site] [account] [repo] [branch] [file] [themes...]
local SITE=$1
local REPO=$3
local FILE=$5
if ! prepare "$1" "$2" "$3" "$4" "${@:6}"; then
return 0
fi
if ! cd "$WORK/$REPO" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! chmod +x "$FILE" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! "./$FILE" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-script () { # [site] [account] [repo] [branch] [script] [themes...]
local SITE=$1
local REPO=$3
local SCRIPT=$5
if ! prepare "$1" "$2" "$3" "$4" "${@:6}"; then
return 0
fi
if ! cd "$WORK/$REPO" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! eval $SCRIPT &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-make () { # [site] [account] [repo] [branch] [theme]
local SITE=$1
local REPO=$3
local THEME=$5
if ! prepare "$@"; then
return 0
fi
if ! make install INSTALL_DIR="$THEMES/$THEME" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-make-destdir () { # [site] [account] [repo] [branch] [theme]
local SITE=$1
local REPO=$3
local THEME=$5
if ! prepare "$@"; then
return 0
fi
if ! mkdir --parents "$WORK/$REPO/usr/share/themes" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! make &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! make install DESTDIR="$WORK/$REPO" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! cp --recursive "$WORK/$REPO/usr/share/themes/"* "$THEMES/" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function theme-autogen-prefix () { # [site] [account] [repo] [branch] [themes...]
local SITE=$1
local REPO=$3
if ! prepare "$@"; then
return 0
fi
if ! ./autogen.sh --enable-parallel --prefix=$(pwd) $AUTOGEN_ARGS &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! make &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
# Adapta/Pop need to run "make install" separately
if ! make install &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cp --recursive "$WORK/$REPO/share/themes/"* "$THEMES/" &>> "$LOG"
cleanup "$@"
}
function theme-autogen-destdir () { # [site] [account] [repo] [branch] [themes...]
local SITE=$1
local REPO=$3
if ! prepare "$@"; then
return 0
fi
if ! ./autogen.sh --enable-parallel $AUTOGEN_ARGS &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! make install DESTDIR=$(pwd) &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
if ! cp --recursive "$WORK/$REPO/usr/share/themes/"* "$THEMES/" &>> "$LOG"; then
message ' Failed!' "$RED"
return 0
fi
cleanup "$@"
}
function fix-inkscape () {
if [[ "$(inkscape --version 2> /dev/null)" =~ 'Inkscape 1.' ]]; then
find . -type f ! -name '*.png' -exec sed --in-place 's/--export-png=/--export-type=png --export-filename=/g' {} \;
fi
}