Initial remote commit

This commit is contained in:
Eudaimon 2022-04-13 20:49:36 +02:00
parent f67c6bbc33
commit aaa9cf7d3c
595 changed files with 30274 additions and 0 deletions

13
source/gtk3/parse-sass.sh Executable file
View file

@ -0,0 +1,13 @@
#! /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 compact"
echo Generating the css...
sassc $SASSC_OPT gtk-contained.scss gtk-contained.css
sassc $SASSC_OPT gtk-contained-dark.scss gtk-contained-dark.css