diff options
Diffstat (limited to '.config/eww/scripts/date-time.sh')
-rwxr-xr-x | .config/eww/scripts/date-time.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/eww/scripts/date-time.sh b/.config/eww/scripts/date-time.sh new file mode 100755 index 0000000..9835842 --- /dev/null +++ b/.config/eww/scripts/date-time.sh @@ -0,0 +1,12 @@ +#!/bin/sh +DaySuffix() { + case `date +%-d` in + 1|21|31) echo "st";; + 2|22) echo "nd";; + 3|23) echo "rd";; + *) echo "th";; + esac +} +date=$(date "+%A %-d`DaySuffix` %B %Y") +icon="" +printf "%s" "$date " |