A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 parse-sass.sh

View raw Download
text/x-shellscript • 424 B
POSIX shell script, ASCII text executable
        
            
1
#!/bin/sh
2
3
for color in '' '-dark' '-light' ; do
4
sassc src/gtk-3.0/3.18/gtk${color}.{scss,css}
5
6
for size in '' '-compact' ; do
7
for version in '3.20' '3.22' ; do
8
sassc src/gtk-3.0/${version}/gtk${color}${size}.{scss,css}
9
done
10
11
# This gnome-shell theme can skip versions '3.20' & '2.22'
12
for version in '3.18' '3.24' ; do
13
sassc src/gnome-shell/${version}/gnome-shell${color}${size}.{scss,css}
14
done
15
done
16
done
17