PADD (formerly Chronometer2) is a more expansive version of the original chronometer.sh that is included with Pi-Hole. PADD provides in-depth information about your Pi-hole.
Here's a real photo (not a screenshot) of how it looks on my home Raspberry Pi installation: PADD Hyper | Giulio Magnifico
For more info, check out the details in the original repo: pi-hole/PADD
More in-depth information about setting up PADD can be found in this repo’s wiki.
To display it correctly, you'll need an 800x480px display (I'm using the HyperPixel 4.0 - Hi-Res Display for Raspberry Pi), or a screen with a frame buffer of 100 lines × 32 columns. You’ll also need to run Unbound to get the updated stats from root.hints.
To install this custom version, simply replace the original padd.sh with the modified padd.sh from this repository (check the execution permission when you replace the file).
Launch it with a 0 offset on both the x and y axes:
# Run PADD
if [ "$TERM" == "linux" ] ; then
while :
do
./padd.sh --xoff 0 --yoff 0
sleep 1
done
fi
