termdown icon indicating copy to clipboard operation
termdown copied to clipboard

Add an argument to show stopwatch in the line

Open rominf opened this issue 5 years ago • 1 comments

I expect termdown to do this thing:

$ termdown --no-figlet --line
0

rominf avatar Oct 31 '18 13:10 rominf

(Suggestion) Use shell alias/script instead.

date1=`date +%s`; while true; do 
   echo -ne "$(date -u --date @$((`date +%s` - $date1)) +%H:%M:%S)\r";
done

Source: https://superuser.com/questions/611538/is-there-a-way-to-display-a-countdown-or-stopwatch-timer-in-a-terminal

lasers avatar Aug 22 '19 21:08 lasers