Aclock is a another clock program, but this time it's an analog clock.
To compile it on Termux you'll need to downloaded the source.
wget https://raw.githubusercontent.com/tenox7/aclock/master/sources/aclock-unix-curses.cYou'll also need the ncurses-dev package.
apt install ncurses-devNow you simply have to compile it.
gcc aclock-unix-curses.c -o aclock -lncurses -lmAfter that you can simply run it with ./aclock.
