i don't like eww

This commit is contained in:
fatmeat 2025-05-11 18:32:24 +02:00
parent 4bb3848b89
commit ebd9d3b01a
2 changed files with 0 additions and 36 deletions

View File

@ -1,14 +0,0 @@
(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")
)
)

View File

@ -1,22 +0,0 @@
(style
".menu" {
background: @ayu-bg;
color: @ayu-fg;
padding: 10px;
border-radius: 8px;
border: 2px solid @ayu-accent;
transition: all 0.3s ease-in-out;
}
"button" {
background: transparent;
padding: 8px 12px;
margin: 4px 0;
border: none;
font-family: "Iosevka SS14";
font-size: 14px;
}
"button:hover" {
background: @ayu-dim;
color: @ayu-accent;
}
)