forked from tliron/install-gnome-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.sh
executable file
·260 lines (229 loc) · 4.97 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
#
# Messaging
#
BLUE='\033[0;34m'
CYAN='\033[0;36m'
RED='\033[0;31m'
RESET='\033[0m'
function message()
{
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)
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
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
}
#
# 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() # [account] [repo] [branch] [themes...]
{
local ACCOUNT=$1
local REPO=$2
local BRANCH=$3
local URL="https://github.com/$ACCOUNT/$REPO"
local KEY="$ACCOUNT|$REPO|$BRANCH"
local LAST_ID=$(get-value "$KEY" "$CACHE_FILE")
local NAMES=$(comma-separated "${@:4}")
message "Fetching repository: $URL..."
# Shallow git clone
cleanup "$REPO"
mkdir --parents "$WORK" &>> "$LOG"
cd "$WORK"
git clone "$URL" --branch "$BRANCH" --depth 1 "$REPO" &>> "$LOG"
cd "$WORK/$REPO"
local CURRENT_ID=$(repository-id)
if [ "$CURRENT_ID" == "$LAST_ID" ]; then
message "$NAMES:"
message " Last updated $(repository-timestamp)."
message " Already installed."
cleanup "$REPO"
return 1
else
message "$NAMES:" "$BLUE"
message " Last updated $(repository-timestamp)." "$BLUE"
message " Installing..." "$BLUE"
if [ "$REPO" == Adapta ]; then
message " WARNING: Installation takes an especially long time due to rendering of all assets, please be patient!" "$BLUE"
fi
set-value "$KEY" "$CURRENT_ID" "$CACHE_FILE"
cd "$THEMES"
rm --recursive --force "${@:4}" &>> "$LOG"
cd "$WORK/$REPO"
return 0
fi
}
function cleanup() # [repo]
{
local REPO=$1
rm --recursive --force "$WORK/$REPO" &>> "$LOG"
}
function theme-cp() # [account] [repo] [branch] [themes...]
{
local REPO=$2
if ! prepare "$@"; then
return
fi
cp --recursive "${@:4}" "$THEMES/" &>> "$LOG"
cleanup "$REPO"
}
function theme-mv() # [account] [repo] [branch] [theme]
{
local REPO=$2
local THEME=$4
if ! prepare "$@"; then
return
fi
mv "$WORK/$REPO" "$THEMES/$THEME" &>> "$LOG"
cleanup "$REPO"
}
function theme-execute() # [account] [repo] [branch] [file] [themes...]
{
local REPO=$2
local FILE=$4
if ! prepare "$1" "$2" "$3" "${@:5}" ; then
return
fi
cd "$WORK/$REPO"
chmod +x "$FILE" &>> "$LOG"
"./$FILE" &>> "$LOG"
cleanup "$REPO"
}
function theme-script() # [account] [repo] [branch] [script] [themes...]
{
local REPO=$2
local SCRIPT=$4
if ! prepare "$1" "$2" "$3" "${@:5}" ; then
return
fi
cd "$WORK/$REPO"
eval $SCRIPT
cleanup "$REPO"
}
function theme-make() # [account] [repo] [branch] [theme]
{
local REPO=$2
local THEME=$4
if ! prepare "$@"; then
return
fi
make install INSTALL_DIR="$THEMES/$THEME" &>> "$LOG"
cleanup "$REPO"
}
function theme-make-destdir() # [account] [repo] [branch] [theme]
{
local REPO=$2
local THEME=$4
if ! prepare "$@"; then
return
fi
mkdir --parents "$WORK/$REPO/usr/share/themes" &>> "$LOG"
make &>> "$LOG"
make install DESTDIR="$WORK/$REPO" &>> "$LOG"
cp --recursive "$WORK/$REPO/usr/share/themes/"* "$THEMES/"
cleanup "$REPO"
}
function theme-autogen-prefix() # [account] [repo] [branch] [themes...]
{
local REPO=$2
if ! prepare "$@"; then
return
fi
./autogen.sh --enable-parallel --prefix=$(pwd) $AUTOGEN_ARGS &>> "$LOG"
make &>> "$LOG"
# Adapta/Pop need to run "make install" separately
make install &>> "$LOG"
cp --recursive "$WORK/$REPO/share/themes/"* "$THEMES/"
cleanup "$REPO"
}
function theme-autogen-destdir() # [account] [repo] [branch] [themes...]
{
local REPO=$2
if ! prepare "$@"; then
return
fi
./autogen.sh --enable-parallel $AUTOGEN_ARGS &>> "$LOG"
make install DESTDIR=$(pwd) &>> "$LOG"
cp --recursive "$WORK/$REPO/usr/share/themes/"* "$THEMES/"
cleanup "$REPO"
}