From 8f70aa6798b1a3236d5ce884419446539d124e26 Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Wed, 7 Apr 2021 20:28:41 +0200 Subject: Minor changes to some scripts. --- systemControl.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'systemControl.sh') diff --git a/systemControl.sh b/systemControl.sh index 1bd09d4..a751588 100755 --- a/systemControl.sh +++ b/systemControl.sh @@ -1,7 +1,7 @@ #!/bin/bash # A dmenu prompt script to control system functions. -options="lock\nreboot\nshutdown\nsuspend\nhibernate\nexit i3" +options="lock\nreboot\nshutdown\nsuspend\nhibernate\nexit i3\nexit bspwm" chosen=$(echo -e "$options" | dmenu -p ">_") @@ -12,4 +12,5 @@ case "$chosen" in "suspend") systemctl suspend ;; "hibernate") ~/scripts/prompt.sh Hibernate? "systemctl hibernate" ;; "exit i3") ~/scripts/prompt.sh "Exit i3? (ends X session)" "i3-msg exit" ;; + "exit bspwm") ~/scripts/prompt.sh "Exit bspwm? (ends X session)" "bspc quit" ;; esac -- cgit v1.2.1