updates to tiling

This commit is contained in:
Sean Kovacs 2025-12-13 12:09:17 -05:00
commit 53973bbfb1
Signed by: sckova
GPG key ID: 00F325187C68651A
8 changed files with 122 additions and 13 deletions

View file

@ -1 +1,13 @@
date +"%a, %b %d @ %I:%M%P"
#!/usr/bin/env bash
day=$(date +%-d)
case "$day" in
11|12|13) suffix="th" ;;
*1) suffix="st" ;;
*2) suffix="nd" ;;
*3) suffix="rd" ;;
*) suffix="th" ;;
esac
date +"%a, %b $day$suffix %Y @ %I:%M%P"