summaryrefslogtreecommitdiff
path: root/tools/power-menu.sh
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-11 10:45:46 -0500
committerauric <104602845+ihateamongus@users.noreply.github.com>2025-09-11 10:45:46 -0500
commit2341d8444599f7bd350d6e12d2f48fe4cecc819d (patch)
tree7a1bd6d796fb7ff3d4ce55c3ee5163ada5873c73 /tools/power-menu.sh
parent0408cb4803e0b2c82affb16e2eac8dfd73895343 (diff)
feat: enlarge dmenu input and add dwm power binds
Diffstat (limited to 'tools/power-menu.sh')
-rwxr-xr-xtools/power-menu.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/power-menu.sh b/tools/power-menu.sh
new file mode 100755
index 0000000..e3b5c63
--- /dev/null
+++ b/tools/power-menu.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+# simple power menu using dmenu
+choice=$(printf '%s\n' lock reboot shutdown | dmenu -i -l 5)
+case "$choice" in
+ lock)
+ slock &
+ ;;
+ reboot)
+ loginctl reboot
+ ;;
+ shutdown)
+ loginctl poweroff
+ ;;
+ *)
+ exit 0
+ ;;
+esac