summaryrefslogtreecommitdiff
path: root/bin/vclock
blob: f53b0904312297b6cc13238ecfdfc2cfcec927bc (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

color="#AAA"

if [[ "$1" == "-s" ]]; then
    xclock -digital -strftime "%H:%M:%S" -face ":size=100:antialias=true:autohint=true" -fg $color -bg black -update 1
else
    xclock -digital -strftime "%H:%M" -face ":size=100:antialias=true:autohint=true" -fg $color -bg black -update 1
fi