mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-10 02:48:44 +00:00
Switch to dotbot
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
(defpoll date-time :interval "5s" "./lib/date-time.sh")
|
||||
|
||||
(defwidget date []
|
||||
(box :class "date"
|
||||
"${date-time.date}"
|
||||
)
|
||||
)
|
||||
|
||||
(defwidget day []
|
||||
(box :class "day"
|
||||
"${date-time.day}"
|
||||
)
|
||||
)
|
||||
|
||||
(defwidget time []
|
||||
(box :class "time"
|
||||
"${date-time.time}"
|
||||
)
|
||||
)
|
||||
|
||||
(defwidget clock-tray-item []
|
||||
(box :class "clock-tray-item"
|
||||
:orientation "h"
|
||||
:space-evenly false
|
||||
:valign "center"
|
||||
(date)
|
||||
(day)
|
||||
(time)
|
||||
)
|
||||
)
|
||||
Reference in New Issue
Block a user