Candyrice/sh/unrelated/csswatch.sh

4 lines
165 B
Bash
Raw Permalink Normal View History

2024-08-03 10:31:45 +00:00
#!/bin/bash
inotifywait -e modify -m -r ~/.config/eww/scss/ | while read events; do
2024-12-12 04:38:10 +00:00
sass ~/.config/eww/scss/eww.scss ~/.config/eww/eww.css --no-source-map;
2024-08-03 10:31:45 +00:00
done;