mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
e766223315
Prints out which day of the week it is (Thursday, etc)
12 lines
106 B
Bash
12 lines
106 B
Bash
#!/bin/bash
|
|
|
|
# Prints out the date
|
|
|
|
PREFIX=''
|
|
|
|
get_day()
|
|
{
|
|
echo "$PREFIX $(date '+%a')"
|
|
}
|
|
|
|
get_day
|