Update CSS watcher script

This commit is contained in:
Candifloss 2026-08-24 11:07:10 +05:30
parent cbadc88044
commit 8fc0a49443
3 changed files with 13 additions and 8 deletions

View File

@ -5,5 +5,5 @@
/* Top bar */ /* Top bar */
.ewwii_panel { .ewwii_panel {
background-color: rgba(95, 95, 95, .404); background-color: rgba(95, 95, 95, 0.404);
} }

View File

@ -21,10 +21,15 @@ echo "Press Ctrl-C to stop."
fswatch \ fswatch \
--recursive \ --recursive \
--latency=0.1 \ --event Updated \
--event Created \
--event Removed \
--event Renamed \
--latency=0.3 \
--one-per-batch \ --one-per-batch \
--include '\.scss$' \
"$scss_dir" | "$scss_dir" |
while read -l event while read -l event
echo "Change detected..." echo "SCSS change detected: $event"
"$builder" "$builder"
end end

View File

@ -3,5 +3,5 @@
// https://git.candifloss.cc/candifloss // https://git.candifloss.cc/candifloss
// Common // Common
$primary_bg: rgba(95, 95, 95, .404); $primary_bg: rgba(95, 95, 95, 0.404);
$primary_text_col: #ffffff; $primary_text_col: #ffffff;