diff options
author | Justine Smithies <justine@smithies.me.uk> | 2025-06-26 16:35:01 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2025-06-26 16:35:01 +0100 |
commit | 52802230025649faea02d4e93e73e7efab3dc995 (patch) | |
tree | 6f3e1f4a56eacaf7ad70e9a9cf7587572a7705a3 | |
parent | 2d4ec5ae8e2bb96c8b406ba2b9765231811ee641 (diff) |
Switched from swaylock to swaylock-effects
-rwxr-xr-x | .config/waybar/scripts/swayidle-update.sh | 6 | ||||
-rwxr-xr-x | .local/bin/power-menu.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.config/waybar/scripts/swayidle-update.sh b/.config/waybar/scripts/swayidle-update.sh index f451b38..363ae8f 100755 --- a/.config/waybar/scripts/swayidle-update.sh +++ b/.config/waybar/scripts/swayidle-update.sh @@ -2,6 +2,6 @@ pkill -f swayidle read -r wallpaper<"$HOME/.cache/wallpaper" swayidle -w \ - timeout 300 "swaylock -f -i $wallpaper" \ - timeout 600 "wlopm --off \*;swaylock -F -i $wallpaper" resume "wlopm --on \*" \ - before-sleep "swaylock -f -i $wallpaper" & + timeout 300 "swaylock -f -i $wallpaper" --effect-blur 10x5 --clock --datestr "%a %d %b %Y" --indicator \ + timeout 600 "wlopm --off \*;swaylock -F -i $wallpaper" --effect-blur 10x5 --clock --datestr "%a %d %b %Y" --indicator resume "wlopm --on \*" \ + before-sleep "swaylock -f -i $wallpaper" --effect-blur 10x5 --clock --datestr "%a %d %b %Y" --indicator & diff --git a/.local/bin/power-menu.sh b/.local/bin/power-menu.sh index b884b17..2cc3156 100755 --- a/.local/bin/power-menu.sh +++ b/.local/bin/power-menu.sh @@ -36,7 +36,7 @@ case "$@" in exit 0 ;; "$lock_screen") - swaylock -f -i "$wallpaper" + swaylock -f -i "$wallpaper" --effect-blur 10x5 --clock --datestr "%a %d %b %Y" --indicator exit 0 ;; esac |