blob: 26d0df515a13bb5b7ac5e5d13b9b7476ad21f3e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(defwindow clock
:monitor 0
:stacking "bottom"
:exclusive false
:focusable false
:geometry (geometry
:width "600px"
:height "200px"
:anchor "top center"
:y "80px")
(clock-widget))
(defwidget clock-widget []
(box
:class "clock-container"
:orientation "vertical"
:valign "center"
:halign "center"
(label
:class "clock-time"
:markup {formattime(EWW_TIME, "%H:%M")})
(label
:class "clock-date"
:markup {formattime(EWW_TIME, "%A, %B %d")})))
|