dwmbar/modules/time
2019-10-21 19:43:26 +01:00

12 lines
111 B
Bash
Executable file

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