14 lines
255 B
Bash
Executable File
14 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Prints the current time
|
|
|
|
# Global config
|
|
source config
|
|
|
|
# status2d patch alternating background
|
|
# background="^b#333333^"
|
|
# background="^b#222222^"
|
|
|
|
# date "+[%a %b %d] [^c#008080^%H:%M^d^]"
|
|
date "+$background$wb %a, %B %d %l:%M%p$we^d^"
|