bemenu -> wmenu

This commit is contained in:
2025-10-25 23:30:01 +00:00
parent 67a6e5fa53
commit dc4de3e6b8
19 changed files with 40 additions and 41 deletions

10
arch-user/bin/menu/run-power.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
sure() {
echo yes | bemenu --prompt "sure?" || exec ~/.local/bin/bemenu/run.sh
}
case "$1" in
poweroff|reboot|suspend) sure && systemctl "$@";;
logout) sure && swaymsg exit;;
esac