Dotfiles-dwm/dwmbar/modules/time
2024-06-02 14:02:06 +03:00

13 lines
111 B
Bash
Executable File

#!/bin/bash
# Prints out the time
PREFIX=' '
get_time()
{
echo "$PREFIX$(date '+%H:%M')"
}
get_time