diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-20 12:03:08 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-20 12:03:08 +0200 |
| commit | 17e73345be3d5d25386db4ad9207bfefb25ce1c3 (patch) | |
| tree | 57b11525cce53ea60c97ca25eb0b03801295fcea /home/rices/finals/eww/configDir/eww.yuck | |
| parent | e2abac4c7241b783150301b62617c91624195cc8 (diff) | |
Add eww config to display a big clock on the wallpaper
Diffstat (limited to 'home/rices/finals/eww/configDir/eww.yuck')
| -rw-r--r-- | home/rices/finals/eww/configDir/eww.yuck | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/home/rices/finals/eww/configDir/eww.yuck b/home/rices/finals/eww/configDir/eww.yuck new file mode 100644 index 0000000..26d0df5 --- /dev/null +++ b/home/rices/finals/eww/configDir/eww.yuck @@ -0,0 +1,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")}))) |
