Candyrice/eww/sh/unrelated/csswatch.sh

4 lines
149 B
Bash

#!/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;