dwmbar/modules/day_of_week
Your Name 747bddd93a Fixed bug with the daypercentage module
Bug occured when the hour was single digit, so we now remove preceding
0s
2021-11-02 09:57:31 +00:00

12 lines
106 B
Bash
Executable file

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