dotfiles/bin/clock.sh

9 lines
93 B
Bash
Executable File

#!/bin/sh
while true; do
clear
date +%T | banner -f 2 | sed -e 's/*/█/g'
sleep 1
done