From 7d97a7825c1d1a94a5b34e580e2d5c5c2def16a9 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 21 Dec 2022 10:12:29 -0600 Subject: [PATCH] fixing clock_full --- eww/eww.yuck | 8 +++++--- eww/notifications.yuck | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/eww/eww.yuck b/eww/eww.yuck index 2fc21d3..7dd95a1 100644 --- a/eww/eww.yuck +++ b/eww/eww.yuck @@ -5,6 +5,7 @@ (include "battery.yuck") (defpoll clock_time :interval "5s" "date '+\%l:\%M \%p'") +(defpoll clock_full :interval "5s" "date '+\%b \%d, \%Y, \%l:\%M \%p'") (defpoll clock_date :interval "1h" "date '+%b %d, %Y'") (defpoll calendar_day :interval "2h" "date '+%d'") (defpoll calendar_year :interval "2h" "date '+%Y'") @@ -97,6 +98,7 @@ (scale :class "volbar" :value volume_percent + :draw-value: true :orientation "h" :tooltip "${volume_percent}%" :max 100 @@ -201,10 +203,10 @@ :orientation "h" :spacing "0" (label - :text clock_time + :text {HOST == "kaladin" ? clock_full : clock_time} :class "clock_time_class" ) (revealer :transition "slideleft" - :reveal time_rev + :reveal {HOST == "kaladin" ? false : time_rev} :duration "250ms" (button :class "clock_date_class" @@ -296,7 +298,7 @@ :geometry (geometry :x "15px" :y "10px" - :width "99%" + :width "80%" :height "30px" :anchor "bottom center") :stacking "fg" diff --git a/eww/notifications.yuck b/eww/notifications.yuck index 0395f1f..8a99ba6 100644 --- a/eww/notifications.yuck +++ b/eww/notifications.yuck @@ -1,3 +1,4 @@ + (defwindow notifications :geometry (geometry :x "0px" :y "0px"