Dotfiles-dwm/dwmbar/modules/date
2024-06-02 14:02:06 +03:00

13 lines
119 B
Bash
Executable File

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