From 786f9c22fab19de866566de4c7933aef416a1462 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Wed, 11 Oct 2023 18:21:52 +0100 Subject: Switched to River --- .config/yambar/scripts/date-time.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 .config/yambar/scripts/date-time.sh (limited to '.config/yambar/scripts/date-time.sh') diff --git a/.config/yambar/scripts/date-time.sh b/.config/yambar/scripts/date-time.sh new file mode 100755 index 0000000..6968cec --- /dev/null +++ b/.config/yambar/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 - %H:%M") +icon="" +printf "%s" "$date" -- cgit v1.2.3