Files
colorshell/eww/windows/calendar-window.yuck
T
2024-12-19 22:06:54 -03:00

21 lines
538 B
Plaintext

(defwindow calendar-window
:monitor 0
:geometry (geometry :anchor "top center")
:stacking "fg"
:exclusive false
:namespace "eww-calendar"
(box :class "calendar-box"
:space-evenly false
:orientation "vertical"
(label :class "calendar-header"
:text "${month-name}")
(calendar :class "month-calendar"
:show-details true
:show-heading true
:show-day-names true
:show-week-numbers false)
)
)