forked from vinceliuice/Qogir-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse-sass.sh
executable file
·42 lines (34 loc) · 1.2 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
#! /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"
_COLOR_VARIANTS=('' '-light' '-dark')
if [ ! -z "${COLOR_VARIANTS:-}" ]; then
IFS=', ' read -r -a _COLOR_VARIANTS <<< "${COLOR_VARIANTS:-}"
fi
_WIN_VARIANTS=('' '-win')
if [ ! -z "${WIN_VARIANTS:-}" ]; then
IFS=', ' read -r -a _WIN_VARIANTS <<< "${WIN_VARIANTS:-}"
fi
_THEME_VARIANTS=('' '-manjaro' '-ubuntu')
if [ ! -z "${THEME_VARIANTS:-}" ]; then
IFS=', ' read -r -a _THEME_VARIANTS <<< "${THEME_VARIANTS:-}"
fi
for theme in "${_THEME_VARIANTS[@]}"; do
for win in "${_WIN_VARIANTS[@]}"; do
for color in "${_COLOR_VARIANTS[@]}"; do
sassc $SASSC_OPT src/gtk-3.0/theme${theme}/gtk${win}${color}.{scss,css}
echo "==> Generating the gtk${theme}${win}${color}.css..."
done
done
done
for theme in "${_THEME_VARIANTS[@]}"; do
for color in "${_COLOR_VARIANTS[@]}"; do
sassc $SASSC_OPT src/gnome-shell/theme${theme}/gnome-shell${color}.{scss,css}
echo "==> Generating the gnome-shell${theme}${color}.css..."
sassc $SASSC_OPT src/cinnamon/theme${theme}/cinnamon${color}.{scss,css}
echo "==> Generating the cinnamon${theme}${color}.css..."
done
done