aboutsummaryrefslogtreecommitdiff
path: root/fuzzel/powermenu.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzel/powermenu.sh')
-rwxr-xr-xfuzzel/powermenu.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/fuzzel/powermenu.sh b/fuzzel/powermenu.sh
deleted file mode 100755
index 22b17c3..0000000
--- a/fuzzel/powermenu.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /bin/sh
-
-poweroff=" Poweroff"
-reboot=" Reboot"
-lock=" Lock"
-exit="󰗼 Exit"
-
-chosen=$(echo -e "$poweroff\n$reboot\n$lock\n$exit" | fuzzel --dmenu --lines 4 --width 15)
-
-case "$chosen" in
- "$poweroff") shutdown now ;;
- "$reboot") reboot ;;
- "$lock") loginctl lock-session ;;
- # "$exit") hyprctl dispatch exit ;;
- "$exit") niri msg action quit ;;
- *) exit 1 ;;
-esac
-