mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-02-05 13:00:03 +00:00
13 lines
106 B
Text
13 lines
106 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints out the date
|
||
|
|
||
|
PREFIX=''
|
||
|
|
||
|
get_day()
|
||
|
{
|
||
|
echo "$PREFIX $(date '+%a')"
|
||
|
}
|
||
|
|
||
|
get_day
|