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

12 lines
119 B
Bash
Executable file

#!/bin/bash
# Prints out the date
PREFIX=''
get_date()
{
echo "$PREFIX $(date '+%d-%m-%y (%a)')"
}
get_date