14 lines
259 B
Bash
Executable File
14 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
sassc css/style.scss css/style.css
|
|
python3 -m http.server 8080 &
|
|
|
|
# Keypress loop
|
|
while true; do
|
|
read -n 1 -s key
|
|
if [[ $key == "r" ]]; then
|
|
echo -e "\nRecompiling SCSS..."
|
|
sassc css/style.scss css/style.css && echo "Done."
|
|
fi
|
|
done
|
|
|