added bash clock updated

This commit is contained in:
Wryn Wagner 2019-08-06 14:42:40 -06:00
parent 637573de89
commit 1de1472667

View File

@ -1,6 +1,15 @@
#!/bin/bash #!/bin/bash
alias datereadable='date +"%A %B %d, %Y"' alias datereadable='date +"%A %B %d, %Y"'
function clock() { function saydate() {
watch -t -n1 "date +'%H : %M : %S' | figlet"; local todaysdate="$(date +'%A %B %d, %Y')"
local currenthour="$(date +'%H')"
local currentminute="$(date +'%M')"
[[ $currentminute -lt 10 ]] && currentminute="O $currentminute";
say "it's currently $currenthour $currentminute on $todaysdate";
}
function clock() {
watch -c -t -n1 "date +'%H : %M : %S' | figlet" | lolcat;
} }