💾 Archived View for ait.place › dot › bin › walldate.txt captured on 2022-07-16 at 13:51:33.

View Raw

More Information

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

#!/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