mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
12 lines
111 B
Bash
12 lines
111 B
Bash
#!/bin/bash
|
|
|
|
# Prints out the time
|
|
|
|
PREFIX=' '
|
|
|
|
get_time()
|
|
{
|
|
echo "$PREFIX$(date '+%H:%M')"
|
|
}
|
|
|
|
get_time
|