From b993c98519acae4bdf3467039f8d9bb3f9d4518b Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 06 Mar 2016 23:26:26 -0500 Subject: Implement session management (log out) --- diff --git a/.fluxbox/keys b/.fluxbox/keys index bb0c93b..5ead746 100644 --- a/.fluxbox/keys +++ b/.fluxbox/keys @@ -80,6 +80,7 @@ Control Shift F12 :TakeToWorkspace 12 Mod4 F1 :Delay {Exec xset dpms force off} 1000000 Pause :Delay {Exec xset dpms force off} 1000000 Control Mod1 Delete l :Exec xscreensaver-command -lock +Control Mod1 Delete q :Exec printf 'quit\n' >~/.xsessionmanage Control Mod1 Delete s :Exec sudo shutdown -hP now Control Mod1 Delete r :Exec sudo reboot diff --git a/.xinitrc b/.xinitrc index 7dbe5da..e616e8e 100644 --- a/.xinitrc +++ b/.xinitrc @@ -2,5 +2,13 @@ startfluxbox -# Keep the X server running forever -exec tail -f /dev/null +rm -f ~/.xsessionmanage +mkfifo -m 0600 ~/.xsessionmanage +while read action; do + case "${action}" in + 'quit') + break + ;; + esac +done <~/.xsessionmanage +rm -f ~/.xsessionmanage -- cgit v0.9.1