yubiuser has released a new updated for PADD, to 3.10.0, and this update I think is quite important because it fixes the “flickering refresh” that was introduced with the v3.9.0.
So I updated also my modified version with more info that fits 800x480px screens. You can download it the file from GitHub: padd.sh v3.10.0 for 800x480px display
Be careful because now PADD auto-center itself in bigger screen/terminal, so you need to change the launch command in your .bashrc
file to disable the x/yoffset, just change the :
./padd.sh
to
./padd.sh -xoff 0 -yoff 0
The full code to launch PADD now is:
# Run PADD
# If we’re on the PiTFT screen (SSH is xterm)
if [ "$TERM" == "linux" ] ; then
while :
do
./padd.sh -xoff 0 -yoff 0
sleep 1
done
fi