No.31
Below is the bash script for the terminal clock that I use. To quit the clock, use Ctrl + c.
#!/bin/bash
# clock.sh
# the script is executed inside a while without conditions
while :
do
# time and date are formatted to show HH:MM:SS YYYY-MM-DD
cmd=`date +"%c"`
# cursor's current position is saved through an escape sequence
echo -n -e "\033[s"
# Uncomment the next two lines to clean up the whole first line, although it causes a lot of blinking
#tput cup 0 0 # positions on row 0 col 0 (left top corner)
#tput el # cleans from position to end of line
# to place the clock on the appropriate column, subtract the length of 'HH:MM:SS YYYY-MM-DD', which is 19,
# from the total number of columns
C=$((`tput cols` - 32))
tput cup 0 $C # positions cursor at row 0 col $C
# clock will be shown green inverted
# setaf 2 = green, smso = inverted
COLOR=`tput setaf 7; tput smso`
# back to normal screen colors
NORMAL=`tput sgr0`
# print the time-date output on the above position
echo -n $COLOR$cmd$NORMAL
# restore the cursor to whatever was its previous position
echo -n -e "\033[u"
# script is executed every second
sleep 1
done
____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at