From 8fc0a494438b0cbbd20f72ff280c3a49dbf830a7 Mon Sep 17 00:00:00 2001 From: candifloss Date: Mon, 24 Aug 2026 11:07:10 +0530 Subject: [PATCH] Update CSS watcher script --- ewwii.css | 2 +- fish/extra/watch_scss.fish | 17 +++++++++++------ scss/colors/_glass.scss | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/ewwii.css b/ewwii.css index aec0802..0013e45 100644 --- a/ewwii.css +++ b/ewwii.css @@ -5,5 +5,5 @@ /* Top bar */ .ewwii_panel { - background-color: rgba(95, 95, 95, .404); + background-color: rgba(95, 95, 95, 0.404); } diff --git a/fish/extra/watch_scss.fish b/fish/extra/watch_scss.fish index c1edab6..2de260b 100755 --- a/fish/extra/watch_scss.fish +++ b/fish/extra/watch_scss.fish @@ -20,11 +20,16 @@ echo "Watching $scss_dir..." echo "Press Ctrl-C to stop." fswatch \ - --recursive \ - --latency=0.1 \ - --one-per-batch \ - "$scss_dir" | + --recursive \ + --event Updated \ + --event Created \ + --event Removed \ + --event Renamed \ + --latency=0.3 \ + --one-per-batch \ + --include '\.scss$' \ + "$scss_dir" | while read -l event - echo "Change detected..." - "$builder" + echo "SCSS change detected: $event" + "$builder" end diff --git a/scss/colors/_glass.scss b/scss/colors/_glass.scss index 6101de9..dfddee4 100644 --- a/scss/colors/_glass.scss +++ b/scss/colors/_glass.scss @@ -3,5 +3,5 @@ // https://git.candifloss.cc/candifloss // Common -$primary_bg: rgba(95, 95, 95, .404); +$primary_bg: rgba(95, 95, 95, 0.404); $primary_text_col: #ffffff;