dotfiles/.local/scripts/powermenu.fish

23 lines
478 B
Fish
Raw Normal View History

2025-12-29 23:40:17 +01:00
#!/usr/bin/env fish
2026-01-25 15:44:54 +01:00
set input_options "󰌾 Lock" "󰤄 Suspend" "󰐥 Poweroff" "󰜉 Reboot"
2025-12-29 23:40:17 +01:00
2026-03-08 23:14:09 +01:00
set input (menu $input_options || exit)
2025-12-29 23:40:17 +01:00
2026-03-08 23:14:09 +01:00
if test (menu "Cancel" "Proceed") = Proceed
switch $input
case $input_options[1]
swaylock -f
2025-12-29 23:40:17 +01:00
2026-03-08 23:14:09 +01:00
case $input_options[2]
swaylock -f
systemctl suspend
2025-12-30 22:04:10 +01:00
2026-03-08 23:14:09 +01:00
case $input_options[3]
systemctl poweroff
2025-12-30 18:11:42 +01:00
2026-03-08 23:14:09 +01:00
case $input_options[4]
systemctl reboot
2025-12-29 23:40:17 +01:00
2026-03-08 23:14:09 +01:00
end
2025-12-29 23:40:17 +01:00
end