diff options
Diffstat (limited to '.local/bin/powermenu')
-rwxr-xr-x | .local/bin/powermenu | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.local/bin/powermenu b/.local/bin/powermenu index aeded37..717f577 100755 --- a/.local/bin/powermenu +++ b/.local/bin/powermenu @@ -21,16 +21,16 @@ case $chosen in $lock ;; "$power_off") - loginctl poweroff + systemctl poweroff ;; "$reboot") - loginctl reboot + systemctl reboot ;; "$suspend") - $lock && loginctl suspend + $lock && systemctl suspend ;; "$hibernate") - $lock && loginctl hibernate + $lock && systemctl hibernate ;; "$log_out") #swaymsg exit |