Files
dotfiles/home/.config/eww/widgets/clock/date-time.sh
T
2024-07-06 12:59:14 +03:00

14 lines
232 B
Bash
Executable File

#!/usr/bin/env 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, %b %-d`DaySuffix` · %H:%M")
printf "%s" "$date"