summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorcaley <u65487754@gmail.com>2026-05-28 13:49:40 +0200
committerGitHub <noreply@github.com>2026-05-28 13:49:40 +0200
commit0bda546ea53e35cd8086cef8d61b84b600bafd50 (patch)
treed6e3c75832eb6b830dd89a8eb3dbedb27dd08cbf /.config
parentdb2b59a82a89b57a31e56bd17ba18ca9e2348695 (diff)
Delete .config/scripts/power.sh
Diffstat (limited to '.config')
-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