ArchRice/eww/eww.yuck
2025-05-11 18:30:17 +02:00

15 lines
456 B
Plaintext

(defwindow powermenu
:monitor 0
:geometry (geometry :x "800" :y "200" :width "250" :height "auto")
:anchor "top right"
:stacking "fg"
:exclusive true
:focusable false
:content (box :orientation "vertical" :class "menu"
(button :label "⏻ Shutdown" :onclick "poweroff")
(button :label " Reboot" :onclick "reboot")
(button :label " Lock" :onclick "i3lock -c 000000")
(button :label " Logout" :onclick "i3-msg exit")
)
)