diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-26 18:08:58 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-26 18:08:58 -0600 |
| commit | f6a78f1164696e808e3495f25413b05997e6ffa7 (patch) | |
| tree | c763db0e4fccb890490fc77ea9f1d13d83e3996d | |
| parent | 7aa5f62cec7317ab58f7a689e3cedbad86aea649 (diff) | |
| download | archsetup-f6a78f1164696e808e3495f25413b05997e6ffa7.tar.gz archsetup-f6a78f1164696e808e3495f25413b05997e6ffa7.zip | |
chore(hyprland): remove unused power-menu script
Using wlogout for power/session management instead.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
| -rwxr-xr-x | dotfiles/hyprland/.local/bin/power-menu | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/dotfiles/hyprland/.local/bin/power-menu b/dotfiles/hyprland/.local/bin/power-menu deleted file mode 100755 index 878a17b..0000000 --- a/dotfiles/hyprland/.local/bin/power-menu +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash -# Power menu using wofi -# Dupre theme with Nerd Font icons - -options="\n\n\n\n\n" - -selected=$(echo -e "$options" | wofi --dmenu \ - --cache-file /dev/null \ - --prompt "" \ - --hide-scroll \ - --hide-search \ - --gtk-dark \ - --layer overlay \ - --width 700 \ - --height 700 \ - --columns 3 \ - --lines 2 \ - --style ~/.config/wofi/power-menu.css \ - --conf /dev/null) - -case "$selected" in - "") - hyprlock - ;; - "") - notify-send "Power Menu" "Logout disabled for testing" - # hyprctl dispatch exit - ;; - "") - notify-send "Power Menu" "Suspend disabled for testing" - # systemctl suspend - ;; - "") - notify-send "Power Menu" "Hibernate disabled for testing" - # systemctl hibernate - ;; - "") - notify-send "Power Menu" "Reboot disabled for testing" - # systemctl reboot - ;; - "") - notify-send "Power Menu" "Shutdown disabled for testing" - # systemctl poweroff - ;; -esac |
