aboutsummaryrefslogtreecommitdiff
path: root/rofi/powermenu.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xrofi/powermenu.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/rofi/powermenu.sh b/rofi/powermenu.sh
deleted file mode 100755
index 2adc4c4..0000000
--- a/rofi/powermenu.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#! /bin/sh
-
-poweroff=""
-reboot=""
-lock=""
-exit="󰗼"
-
-chosen=$(echo -e "$poweroff\n$reboot\n$lock\n$exit" | rofi -dmenu -theme powermenu.rasi)
-
-case "$chosen" in
- "$poweroff") shutdown now ;;
- "$reboot") reboot ;;
- "$lock") loginctl lock-session ;;
- "$exit") hyprctl dispatch exit ;;
- *) exit 1 ;;
-esac
-