mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-11 11:17:03 +00:00
59 lines
1.3 KiB
Text
59 lines
1.3 KiB
Text
|
(defwindow powermenu
|
||
|
:monitor 0
|
||
|
:geometry (geometry
|
||
|
:anchor "center"
|
||
|
)
|
||
|
; Widgets
|
||
|
(box
|
||
|
:spacing 5
|
||
|
:class "powermenu"
|
||
|
:space-evenly true
|
||
|
:orientation "vertical"
|
||
|
:halign "left"
|
||
|
:valign "center"
|
||
|
|
||
|
; Contents
|
||
|
(button
|
||
|
:onclick "eww open confirm-command --arg action=poweroff --arg command=poweroff"
|
||
|
"Poweroff"
|
||
|
)
|
||
|
(button
|
||
|
:onclick "eww open confirm-command --arg action=reboot --arg command=reboot"
|
||
|
"Reboot"
|
||
|
)
|
||
|
(button
|
||
|
:onclick "eww close powermenu"
|
||
|
"Cancel"
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
|
||
|
(defwindow confirm-command [action command]
|
||
|
:monitor 0
|
||
|
:geometry (geometry
|
||
|
:anchor "center"
|
||
|
:width "13%"
|
||
|
:height "8%"
|
||
|
)
|
||
|
; Widgets
|
||
|
(box
|
||
|
:class "powermenu"
|
||
|
:orientation "vertical"
|
||
|
:halign "center"
|
||
|
:valign "center"
|
||
|
"Are you sure you want to ${action}"
|
||
|
(box
|
||
|
:orientation "horizontal"
|
||
|
:spacing 10
|
||
|
(button
|
||
|
:onclick "eww close confirm-command"
|
||
|
"No"
|
||
|
)
|
||
|
(button
|
||
|
:onclick command
|
||
|
"Yes"
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|