💾 Archived View for ait.place › dot › bin › .local › bin › walldate.txt captured on 2021-12-05 at 23:47:19.

View Raw

More Information

⬅️ Previous capture (2021-12-03)

➡️ Next capture (2022-06-03)

-=-=-=-=-=-=-

#!/bin/sh
while true; do
	convert -background none -fill white -font $(fc-match | awk '{print $2}' | tr -d '"') \
		-size 1000x label:$(date +%R) png:$XDG_CACHE_HOME/walldate.png && \
	hsetroot -solid "#111111" -center "$XDG_CACHE_HOME/walldate.png"
	sleep $(( 60 - $(date +%S) ))s;
 done