[eww] Adds my Eww config

This commit is contained in:
2025-02-16 13:34:14 -08:00
parent cb5c6518f1
commit e642c86e21
16 changed files with 923 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')}"
)
)
)