small pixel drawing of a pufferfish dotfiles

bin/statusbar

1 2 3 4 5 6 7 8 9
#!/bin/sh

while true
do
    time=$(date +"%A %Y-%m-%d %I:%M %p")
    time="$time $(date -u +"(%H:%M UTC)")"
    printf "%s\n" "${time}"
    sleep 10
done