URI:
       tchronoclock - scripts - random scripts
  HTML git clone https://git.parazyd.org/scripts
   DIR Log
   DIR Files
   DIR Refs
       ---
       tchronoclock (162B)
       ---
            1 #!/bin/sh
            2 # fonts: xsansb future smblock univers
            3 
            4 FONT=${FONT:-future}
            5 
            6 while true; do
            7         clear
            8         echo
            9         printf "`date  '+%H:%M:%S'`" | toilet -f $FONT
           10         sleep 1
           11 done