summary refs log tree commit diff
path: root/home/.local/bin/clock
blob: 33a0e89073eca087594e0a48368c8557714112c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -eu

tput civis
sleep=$(( 60 - $(date +'%S') ))
while :; do
	printf '%3s%% %s' "$(apm -l)" "$(date +'%a %H:%M')"
	sleep $sleep
	sleep=60
done