summaryrefslogtreecommitdiff
path: root/.config/scripts
diff options
context:
space:
mode:
Diffstat (limited to '.config/scripts')
-rw-r--r--.config/scripts/power.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/.config/scripts/power.sh b/.config/scripts/power.sh
deleted file mode 100644
index 18fea9d..0000000
--- a/.config/scripts/power.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-options="lock\nlogout\nshutdown\nreboot"
-choice=$(echo -e "$options" | rofi -dmenu -i -p ">")
-
-case "$choice" in
- lock)
- hyprlock
- ;;
- logout)
- command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch exit
- ;;
- shutdown)
- shutdown now
- ;;
- reboot)
- reboot
- ;;
-esac