-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathparse-sass.sh
executable file
·56 lines (48 loc) · 2.12 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
49
50
51
52
53
54
55
56
#! /usr/bin/env 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
_ECOLOR_VARIANTS=('' '-dark')
if [ ! -z "${ECOLOR_VARIANTS:-}" ]; then
IFS=', ' read -r -a _ECOLOR_VARIANTS <<< "${ECOLOR_VARIANTS:-}"
fi
_THEME_VARIANTS=('-sea' '-aliz' '-azul' '-pueril')
if [ ! -z "${THEME_VARIANTS:-}" ]; then
IFS=', ' read -r -a _THEME_VARIANTS <<< "${THEME_VARIANTS:-}"
fi
for color in "${_COLOR_VARIANTS[@]}"; do
for theme in "${_THEME_VARIANTS[@]}"; do
sassc $SASSC_OPT src/gtk/gtk-3.0/gtk${color}${theme}.{scss,css}
echo "==> Generating the GTK 3.0 gtk${color}${theme}.css..."
sassc $SASSC_OPT src/gtk/gtk-4.0/gtk${color}${theme}.{scss,css}
echo "==> Generating the GTK 4.0 gtk${color}${theme}.css..."
done
done
for color in "${_ECOLOR_VARIANTS[@]}"; do
for theme in "${_THEME_VARIANTS[@]}"; do
sassc $SASSC_OPT src/gnome-shell/3.28/gnome-shell${color}${theme}.{scss,css}
echo "==> Generating the 3.28 gnome-shell${color}${theme}.css..."
sassc $SASSC_OPT src/gnome-shell/40.0/gnome-shell${color}${theme}.{scss,css}
echo "==> Generating the 40.0 gnome-shell${color}${theme}.css..."
sassc $SASSC_OPT src/gnome-shell/42.0/gnome-shell${color}${theme}.{scss,css}
echo "==> Generating the 42.0 gnome-shell${color}${theme}.css..."
sassc $SASSC_OPT src/gnome-shell/44.0/gnome-shell${color}${theme}.{scss,css}
echo "==> Generating the 44.0 gnome-shell${color}${theme}.css..."
sassc $SASSC_OPT src/gnome-shell/46.0/gnome-shell${color}${theme}.{scss,css}
echo "==> Generating the 46.0 gnome-shell${color}${theme}.css..."
sassc $SASSC_OPT src/gnome-shell/47.0/gnome-shell${color}${theme}.{scss,css}
echo "==> Generating the 47.0 gnome-shell${color}${theme}.css..."
done
done
for color in "${_ECOLOR_VARIANTS[@]}"; do
for theme in "${_THEME_VARIANTS[@]}"; do
sassc $SASSC_OPT src/cinnamon/cinnamon${color}${theme}.{scss,css}
echo "==> Generating the cinnamon${color}${theme}.css..."
done
done