blob: 6968cec6ac4df7d00fee95c8bd3e987e03340a61 (
plain) (
tree)
|
|
#!/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"
|