Files
colorshell/eww/windows/calendar.yuck
T
2024-11-23 10:10:28 -03:00

23 lines
414 B
Plaintext

(defwindow calendar
:monitor 0
:geometry (geometry :width 300
:height 250
:anchor "top center"
)
:stacking "fg"
:exclusive false
:namespace "eww-calendar"
(box
(cal)
)
)
(defwidget cal []
(box :class "widget-calendar"
(box :class "month-calendar"
(button :class "day"
1)
)
)
)