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