💾 Archived View for ait.place › dot › bin › .local › bin › walldate.txt captured on 2022-06-03 at 22:57:21.

View Raw

More Information

⬅️ Previous capture (2021-12-03)

🚧 View Differences

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

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