💾 Archived View for ait.place › dot › bin › walldate.txt captured on 2023-05-24 at 18:13:22.
⬅️ Previous capture (2022-07-16)
-=-=-=-=-=-=-
#!/bin/sh while true; do convert \ -background none \ -fill white \ -font ubuntu \ -pointsize 250 \ -size 960x540 \ -gravity center \ label:$(date +%R) \ png:$XDG_CACHE_HOME/walldate.png && \ hsetroot -solid "#111111" -tile "$XDG_CACHE_HOME/walldate.png" sleep $(( 60 - $(date +%S) ))s; done