dwmbar/modules/day_of_week

13 lines
106 B
Text
Raw Permalink Normal View History

#!/bin/bash
# Prints out the date
PREFIX=''
get_day()
{
echo "$PREFIX $(date '+%a')"
}
get_day