summaryrefslogtreecommitdiff
path: root/.local/bin/powermenu
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2020-10-03 19:27:15 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2020-10-03 19:27:15 -0400
commite371d9edd474bcf89cf5d462eaccb8638900b390 (patch)
treeed07118f5c514a55f23a779a1507640e46fd9ed2 /.local/bin/powermenu
Initial commit
Diffstat (limited to '.local/bin/powermenu')
-rwxr-xr-x.local/bin/powermenu11
1 files changed, 11 insertions, 0 deletions
diff --git a/.local/bin/powermenu b/.local/bin/powermenu
new file mode 100755
index 0000000..994953e
--- /dev/null
+++ b/.local/bin/powermenu
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+choice=$(printf "Logout\\nShutdown\\nReboot\\nHibernate" | dmenu -i -p "Power Utility")
+
+case $choice in
+ *L*) $SCRIPTS/control/lockscreen ;;
+ *H*) systemctl suspend ;;
+ *R*) reboot ;;
+ *S*) shutdown -h now ;;
+ "") notify-send -i "$HOME/.fonts/svg/power-off.svg" -a Power "Operation suspended"
+esac