Files
purple-explorer/scripts/sass_theme_reader.sh
T

7 lines
288 B
Bash
Raw Normal View History

2020-12-12 20:21:49 -07:00
#!/bin/bash
2021-01-23 16:51:46 -07:00
if [ -f ./settings.json ]; then
echo "\$theme-name: \"$(./node_modules/.bin/strip-json-comments settings.json | ./node_modules/.bin/json shared_pages.theme)\";" > ./public/css/_theme-selector.scss
else
echo "\$theme-name: \"Exor\";" > ./public/css/_theme-selector.scss
fi