This solution may be a little terse (96 bytes; I wrote it for the 140bytes golfing challenge), but it should help explain how to get the current time's clock character: https://gist.github.com/eligrey/985721#file-annotated-js
a=$((`date +%M`/15));b=$((128335 + `date +%l` +((a*(a**2-39*a+110))/6)));printf '%x' $b;
and print the resulting hex's character, no?(I'd finish off the code myself, but I have a bus to catch)
Edit: Ah, I see Sephr came prepared. ;)
Also, the code is now used in the liquid prompt: https://github.com/nojhan/liquidprompt/commit/91959b636af751...
$ ./bashtime.sh
🕤Personally, when it comes to time, I "think" digital.
My [zsh] prompt displays the exact time down to the second on its own line. I just scan up looking at the time to see if the hours match or minutes... But I still have the ability to know if one was 3 minutes 33 seconds or one was 27 minutes 10 seconds within that hour/half hour.
Speaking of another:
export PS1="\t $"
For a lot more information on bash prompts, I'd recommend http://blog.sanctum.geek.nz/bash-prompts/ <prompt title="12:03:33">(clockface)</prompt>