Files
nixconfig/modules/home/wayland/apps/eww/bar/scripts/powermenu-toggle
T
2026-09-10 19:54:50 +02:00

12 lines
297 B
Bash
Executable File

#!/usr/bin/env bash
# Toggle the full-screen power menu on the focused monitor.
ew() { timeout 5 eww "$@"; }
ew close popup 2>/dev/null
ew update active-panel=
screen=$(eww-bar focused)
if [[ -n $screen ]]; then
ew open powermenu --toggle --screen "$screen"
else
ew open powermenu --toggle
fi