summaryrefslogtreecommitdiff
path: root/.local/bin/dmenu
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/dmenu')
-rwxr-xr-x.local/bin/dmenu/dm-power2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/dmenu/dm-power b/.local/bin/dmenu/dm-power
index 2202bc4..fb856bb 100755
--- a/.local/bin/dmenu/dm-power
+++ b/.local/bin/dmenu/dm-power
@@ -5,7 +5,7 @@ DMENU_CMD="dmenu -p 'sys:' -l 8 -b -i -fn 'JetBrainsMono Nerd Font:size=11'"
case "$(printf "Shutdown\nRestart\nLogout\nSuspend\nLock" | eval "$DMENU_CMD")" in
Shutdown) exec systemctl poweroff;;
Restart) exec systemctl reboot;;
- Logout) kill -HUP "$XDG_SESSION_PID";;
+ Logout) exec loginctl terminate-session ${XDG_SESSION_ID-};;
Suspend) exec systemctl suspend;;
Lock) exec systemctl --user start lock.target;;
esac