[eww] Move eww back to a common dir

This commit is contained in:
2025-03-28 10:37:59 -07:00
parent b241ccd7d8
commit f3986a8773
17 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
(defwidget clock-small []
(box
:orientation "h"
:class "clock small"
:space-evenly false
(label
:class "time"
:text "${formattime(EWW_TIME, '%I:%M')}"
)
(label
:class "date"
:text "${formattime(EWW_TIME, '%a %b %d')}"
)
)
)
(defwidget clock-large []
(box
:orientation "v"
:class "clock large"
:space-evenly true
(label
:class "time"
:text "${formattime(EWW_TIME, '%I:%M')}"
)
(label
:class "date"
:text "${formattime(EWW_TIME, '%a %b %d')}"
)
)
)