mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-02-05 13:00:03 +00:00
12 lines
103 B
Bash
12 lines
103 B
Bash
#!/bin/bash
|
|
|
|
# Prints out the time
|
|
|
|
PREFIX=' '
|
|
|
|
time()
|
|
{
|
|
echo "$PREFIX$(date '+%H:%M')"
|
|
}
|
|
|
|
time
|