aboutsummaryrefslogtreecommitdiff
path: root/.scripts/dwm_time
blob: a68b913808cf4be2567439a364a1b0d4ff1fe1fc (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env sh

while true; do
    time=$(date +'%H:%M')
    # bat=$(acpi | awk '{print $4}' | head -c3)
    # xsetroot -name " $bat | $time "
    xsetroot -name " $time "
    sleep 1
done