diff options
| author | Justine Smithies <justine@smithies.me.uk> | 2026-06-18 19:26:49 +0100 |
|---|---|---|
| committer | Justine Smithies <justine@smithies.me.uk> | 2026-06-18 19:26:49 +0100 |
| commit | 1da97f86c6abc9e13ccd587efe6f610c420b1cd4 (patch) | |
| tree | 10ac25d4780647d9ab51909aaa1b7d343cdb79f2 /.local/bin | |
| parent | 33de78e1833ffdc368927d4d96339f9e310598af (diff) | |
Swapped poweroff and reboot for shutdown -p and -r now
Diffstat (limited to '.local/bin')
| -rwxr-xr-x | .local/bin/power-menu-fuzzel.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/power-menu-fuzzel.sh b/.local/bin/power-menu-fuzzel.sh index f41a42a..035e448 100755 --- a/.local/bin/power-menu-fuzzel.sh +++ b/.local/bin/power-menu-fuzzel.sh @@ -25,10 +25,10 @@ case $chosen in swaylock -f -i "$wallpaper" --effect-blur 10x5 --clock --datestr "%a %d %b %Y" --indicator ;; "$power_off") - doas poweroff + doas shutdown -p now ;; "$reboot") - doas reboot + doas shutdown -r now ;; "$suspend") $lock && doas zzz |
