dwmbar/modules/time
2019-10-21 19:20:06 +01:00

12 lines
103 B
Bash

#!/bin/bash
# Prints out the time
PREFIX=' '
time()
{
echo "$PREFIX$(date '+%H:%M')"
}
time