A fork of the Materia GTK theme.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 parse-sass.sh

View raw Download
text/x-shellscript • 377 B
Bourne-Again shell script, ASCII text executable
        
            
1
#!/bin/bash
2
set -ueo pipefail
3
4
if [[ ! "$(command -v sassc)" ]]; then
5
echo "'sassc' needs to be installed to generate the CSS."
6
exit 1
7
fi
8
9
SASSC_OPT=('-M' '-t' 'expanded')
10
11
echo "Generating the chrome-scrollbar CSS..."
12
13
sassc "${SASSC_OPT[@]}" src/chrome/chrome-scrollbar/scrollbars.{scss,css}
14
sassc "${SASSC_OPT[@]}" src/chrome/chrome-scrollbar-dark/scrollbars.{scss,css}
15