From d68da621232205d3ccc83bdfc641d3afc4757079 Mon Sep 17 00:00:00 2001 From: Ezri Brimhall Date: Tue, 19 Mar 2024 16:23:13 -0600 Subject: [PATCH] fixed dow tag for python strftime --- .config/eww/scripts/date.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/eww/scripts/date.py b/.config/eww/scripts/date.py index 8203922..6bd98b0 100755 --- a/.config/eww/scripts/date.py +++ b/.config/eww/scripts/date.py @@ -13,7 +13,7 @@ import time def get_date(): """Return the current date as a JSON object string.""" return datetime.datetime.now().strftime( - '{"hour": "%H", "minute": "%M", "second": "%S", "day": "%d", "month": "%m", "year": "%Y", "dow": "%w","month_name": "%B", "unix": %s}' + '{"hour": "%H", "minute": "%M", "second": "%S", "day": "%d", "month": "%m", "year": "%Y", "dow": "%A","month_name": "%B", "unix": %s}' )