forked from vinceliuice/Vimix-icon-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·134 lines (110 loc) · 5.54 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
#!/bin/bash
if [ ${UID} -eq 0 ]; then
DEST_DIR="/usr/share/icons"
else
DEST_DIR="${HOME}/.local/share/icons"
fi
readonly SRC_DIR=$(cd $(dirname $0) && pwd)
readonly COLOR_VARIANTS=("standard" "Amethyst" "Beryl" "Doder" "Ruby" "Black" "White")
readonly BRIGHT_VARIANTS=("" "dark")
usage() {
printf "%s\n" "Usage: $0 [OPTIONS...] [COLOR VARIANTS...]"
printf "\n%s\n" "OPTIONS:"
printf " %-25s%s\n" "-a" "Install all color folder versions"
printf " %-25s%s\n" "-d DIR" "Specify theme destination directory (Default: ${DEST_DIR})"
printf " %-25s%s\n" "-n NAME" "Specify theme name (Default: Tela)"
printf " %-25s%s\n" "-h" "Show this help"
printf "\n%s\n" "COLOR VARIANTS:"
printf " %-25s%s\n" "standard" "Standard color folder version"
printf " %-25s%s\n" "Amethyst" "Purple color folder version"
printf " %-25s%s\n" "Beryl" "Green color folder version"
printf " %-25s%s\n" "Doder" "Blue color folder version"
printf " %-25s%s\n" "Ruby" "Red color folder version"
printf " %-25s%s\n" "Black" "Black color folder version"
printf " %-25s%s\n" "White" "White color folder version"
printf "\n %s\n" "By default, only the standard one is selected."
}
install_theme() {
# Appends a dash if the variables are not empty
if [[ "$1" != "standard" ]]; then
local -r colorprefix="-$1"
fi
local -r brightprefix="${2:+-$2}"
local -r THEME_NAME="${NAME}${colorprefix}${brightprefix}"
local -r THEME_DIR="${DEST_DIR}/${THEME_NAME}"
if [ -d "${THEME_DIR}" ]; then
rm -r "${THEME_DIR}"
fi
echo "Installing '${THEME_NAME}'..."
install -d "${THEME_DIR}"
install -m644 "${SRC_DIR}/src/index.theme" "${THEME_DIR}"
# Update the name in index.theme
sed -i "s/%NAME%/${THEME_NAME//-/ }/g" "${THEME_DIR}/index.theme"
if [ -z "${brightprefix}" ]; then
cp -r "${SRC_DIR}"/src/{16,22,24,scalable,symbolic} "${THEME_DIR}"
cp -r "${SRC_DIR}"/links/{16,22,24,scalable,symbolic} "${THEME_DIR}"
if [ -n "${colorprefix}" ]; then
install -m644 "${SRC_DIR}"/src/colors/color${colorprefix}/*.svg "${THEME_DIR}/scalable/places"
fi
else
local -r STD_THEME_DIR="${THEME_DIR%-dark}"
install -d "${THEME_DIR}"/{16,22,24}
cp -r "${SRC_DIR}"/src/16/{actions,devices,places} "${THEME_DIR}/16"
cp -r "${SRC_DIR}"/src/22/{actions,devices,places} "${THEME_DIR}/22"
cp -r "${SRC_DIR}"/src/24/{actions,devices,places} "${THEME_DIR}/24"
# Change icon color for dark theme
sed -i "s/#565656/#aaaaaa/g" "${THEME_DIR}"/{16,22,24}/actions/*
sed -i "s/#727272/#aaaaaa/g" "${THEME_DIR}"/{16,22,24}/{places,devices}/*
cp -r "${SRC_DIR}"/links/16/{actions,devices,places} "${THEME_DIR}/16"
cp -r "${SRC_DIR}"/links/22/{actions,devices,places} "${THEME_DIR}/22"
cp -r "${SRC_DIR}"/links/24/{actions,devices,places} "${THEME_DIR}/24"
# Link the common icons
ln -sr "${STD_THEME_DIR}/scalable" "${THEME_DIR}/scalable"
ln -sr "${STD_THEME_DIR}/symbolic" "${THEME_DIR}/symbolic"
ln -sr "${STD_THEME_DIR}/16/mimetypes" "${THEME_DIR}/16/mimetypes"
ln -sr "${STD_THEME_DIR}/16/panel" "${THEME_DIR}/16/panel"
ln -sr "${STD_THEME_DIR}/16/status" "${THEME_DIR}/16/status"
ln -sr "${STD_THEME_DIR}/22/emblems" "${THEME_DIR}/22/emblems"
ln -sr "${STD_THEME_DIR}/22/mimetypes" "${THEME_DIR}/22/mimetypes"
ln -sr "${STD_THEME_DIR}/22/panel" "${THEME_DIR}/22/panel"
ln -sr "${STD_THEME_DIR}/24/animations" "${THEME_DIR}/24/animations"
ln -sr "${STD_THEME_DIR}/24/panel" "${THEME_DIR}/24/panel"
fi
ln -sr "${THEME_DIR}/16" "${THEME_DIR}/16@2x"
ln -sr "${THEME_DIR}/22" "${THEME_DIR}/22@2x"
ln -sr "${THEME_DIR}/24" "${THEME_DIR}/24@2x"
ln -sr "${THEME_DIR}/scalable" "${THEME_DIR}/scalable@2x"
cp -r "${SRC_DIR}/src/cursors/dist${brightprefix}" "${THEME_DIR}/cursors"
gtk-update-icon-cache "${THEME_DIR}"
}
while [ $# -gt 0 ]; do
if [[ "$1" = "-a" ]]; then
colors=("${COLOR_VARIANTS[@]}")
elif [[ "$1" = "-d" ]]; then
DEST_DIR="$2"
shift 2
elif [[ "$1" = "-n" ]]; then
NAME="$2"
shift 2
elif [[ "$1" = "-h" ]]; then
usage
exit 0
# If the argument is a color variant, append it to the colors to be installed
elif [[ " ${COLOR_VARIANTS[*]} " = *" $1 "* ]] && \
[[ "${colors[*]}" != *$1* ]]; then
colors+=("$1")
else
echo "ERROR: Unrecognized installation option '$1'."
echo "Try '$0 -h' for more information."
exit 1
fi
shift
done
# Default name is 'Vimix'
: "${NAME:=Vimix}"
# By default, only the standard color variant is selected
for color in "${colors[@]:-standard}"; do
for bright in "${BRIGHT_VARIANTS[@]}"; do
install_theme "${color}" "${bright}"
done
done