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;