-
Notifications
You must be signed in to change notification settings - Fork 119
/
parse-sass.sh
executable file
·49 lines (38 loc) · 1.78 KB
/
parse-sass.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
#!/bin/bash
if [ ! "$(which sassc 2> /dev/null)" ]; then
echo sassc needs to be installed to generate the css.
exit 1
fi
SASSC_OPT="-M -t expanded"
SRC_DIR=$(cd $(dirname $0) && pwd)
_COLOR_VARIANTS=('' '-Light' '-Dark')
if [ ! -z "${COLOR_VARIANTS:-}" ]; then
IFS=', ' read -r -a _COLOR_VARIANTS <<< "${COLOR_VARIANTS:-}"
fi
_COLOR_D_VARIANTS=('' '-Dark')
if [ ! -z "${COLOR_D_VARIANTS:-}" ]; then
IFS=', ' read -r -a _COLOR_D_VARIANTS <<< "${COLOR_D_VARIANTS:-}"
fi
cp -rf ${SRC_DIR}/src/_sass/_tweaks.scss ${SRC_DIR}/src/_sass/_tweaks-temp.scss
for color in "${_COLOR_VARIANTS[@]}"; do
sassc $SASSC_OPT src/gtk/theme-3.0/gtk${color}.{scss,css}
echo "==> Generating the gtk-3.0${color}.css..."
sassc $SASSC_OPT src/gtk/theme-4.0/gtk${color}.{scss,css}
echo "==> Generating the gtk-4.0${color}.css..."
done
for color in "${_COLOR_D_VARIANTS[@]}"; do
sassc $SASSC_OPT src/gnome-shell/theme-3-32/gnome-shell${color}.{scss,css}
echo "==> Generating the gnome-shell-3-32${color}.css..."
sassc $SASSC_OPT src/gnome-shell/theme-40-0/gnome-shell${color}.{scss,css}
echo "==> Generating the gnome-shell-40-0${color}.css..."
sassc $SASSC_OPT src/gnome-shell/theme-42-0/gnome-shell${color}.{scss,css}
echo "==> Generating the gnome-shell-42-0${color}.css..."
sassc $SASSC_OPT src/gnome-shell/theme-44-0/gnome-shell${color}.{scss,css}
echo "==> Generating the gnome-shell-44-0${color}.css..."
sassc $SASSC_OPT src/gnome-shell/theme-46-0/gnome-shell${color}.{scss,css}
echo "==> Generating the gnome-shell-46-0${color}.css..."
sassc $SASSC_OPT src/gnome-shell/theme-47-0/gnome-shell${color}.{scss,css}
echo "==> Generating the gnome-shell-47-0${color}.css..."
sassc $SASSC_OPT src/cinnamon/cinnamon${color}.{scss,css}
echo "==> Generating the cinnamon${color}.css..."
done