dwmbar/modules/day_of_week
Baitinq e766223315
Add DAY_OF_WEEK module
Prints out which day of the week it is (Thursday, etc)
2021-10-21 13:55:33 +01:00

12 lines
106 B
Bash

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