Files
colorshell/eww/windows/control-center.yuck
T
2024-12-21 18:54:41 -03:00

25 lines
762 B
Plaintext

(include "widgets/control-center/top-bar.yuck")
(include "widgets/control-center/notifications.yuck")
(include "widgets/control-center/notification.yuck")
(include "widgets/control-center/toggles.yuck")
(defwindow control-center []
:monitor 0
:geometry (geometry :width "500px"
:anchor "top right")
:stacking "overlay"
:exclusive false
:namespace "eww-cc"
(box :class "cc"
:orientation "vertical"
:space-evenly false
(top-bar)
(toggles)
(big-media :show-album-bg true
:show-album-image true
:visible { json_media == "" || (json_media.title == "null" && json_media.artist == "null") ? false : true })
(notifications)
)
)