Candyrice/eww/sh/unrelated/csswatch.sh

4 lines
149 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
sass ~/.config/eww/scss/eww.scss ~/.config/eww/eww.css;
done;