diff options
author | Joe <rrbo@proton.me> | 2023-01-11 17:47:44 +0100 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-01-11 17:47:44 +0100 |
commit | 05fddf169347ec3fa42e8798c89d644e832dc6c4 (patch) | |
tree | 8aef23292cc158e439fac7dcc7184e26fbd14002 /.config | |
parent | up (diff) | |
download | dotfiles-bsd-05fddf169347ec3fa42e8798c89d644e832dc6c4.tar.gz dotfiles-bsd-05fddf169347ec3fa42e8798c89d644e832dc6c4.tar.bz2 dotfiles-bsd-05fddf169347ec3fa42e8798c89d644e832dc6c4.tar.xz dotfiles-bsd-05fddf169347ec3fa42e8798c89d644e832dc6c4.tar.zst dotfiles-bsd-05fddf169347ec3fa42e8798c89d644e832dc6c4.zip |
up
Diffstat (limited to '.config')
-rwxr-xr-x | .config/openbox/menu.xml | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/.config/openbox/menu.xml b/.config/openbox/menu.xml index 7feb649..36f810f 100755 --- a/.config/openbox/menu.xml +++ b/.config/openbox/menu.xml @@ -187,9 +187,7 @@ </item> <item label="Sleep"> <action name="Execute"> - <command>notify-send -u normal reboot " G'night, partner!"</command> - <command>sleep 2</command> - <command>acpiconf -s 3</command> + <command>notify-send -u normal reboot " G'night, partner!"; sleep 2; acpiconf -s 3</command> </action> </item> <item label="Log Out"> @@ -199,18 +197,12 @@ </item> <item label="Reboot"> <action name="Execute"> - <command>emacsclient -e '"(save-buffers-kill-emacs)"'</command> - <command>notify-send -u normal reboot " Rebootin' now!"</command> - <command>sleep 2</command> - <command>shutdown -r now</command> + <command>emacsclient -e '"(save-buffers-kill-emacs)"'; notify-send -u normal reboot " Rebootin' now!"; sleep 2; shutdown -r now</command> </action> </item> <item label="Shutdown"> <action name="Execute"> - <command>emacsclient -e '"(save-buffers-kill-emacs)"'</command> - <command>notify-send -u normal shutdown ' Farewell, partner!'</command> - <command>sleep 2</command> - <command>shutdown -p now</command> + <command>emacsclient -e '"(save-buffers-kill-emacs)"'; notify-send -u normal shutdown ' Farewell, partner!'; sleep 2; shutdown -p now</command> </action> </item> </menu> |