dwmbar/modules/time

13 lines
103 B
Text
Raw Normal View History

2019-10-21 18:00:47 +00:00
#!/bin/bash
# Prints out the time
2019-10-21 18:20:06 +00:00
PREFIX=' '
2019-10-21 18:00:47 +00:00
2019-10-21 18:20:06 +00:00
time()
{
echo "$PREFIX$(date '+%H:%M')"
}
time