aboutsummaryrefslogtreecommitdiff
path: root/systemControl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'systemControl.sh')
-rwxr-xr-x[-rw-r--r--]systemControl.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/systemControl.sh b/systemControl.sh
index aa200b3..b7ba5ee 100644..100755
--- a/systemControl.sh
+++ b/systemControl.sh
@@ -3,11 +3,11 @@
options="lock\nreboot\nshutdown\nexit i3"
-chosen=$(echo -e "$options" | dmenu)
+chosen=$(echo -e "$options" | dmenu -p ">_")
case "$chosen" in
lock) i3lock -i ~/images/wallpapers/lockbg.png -f ;;
- reboot) bash ~/scripts/prompt.sh Reboot? reboot ;;
- shutdown) bash ~/scripts/prompt.sh Shutdown? "shutdown now" ;;
- "exit i3") bash ~/scripts/prompt.sh "Exit i3? (ends X session)" "i3-msg exit" ;;
+ reboot) ~/scripts/prompt.sh Reboot? reboot ;;
+ shutdown) ~/scripts/prompt.sh Shutdown? "shutdown now" ;;
+ "exit i3") ~/scripts/prompt.sh "Exit i3? (ends X session)" "i3-msg exit" ;;
esac