2

I have seen a bunch of different zsh prompts but I was wondering how I can add a clock?

I want a simple clock, not anything too complex that self updates.

sgonzalez
  • 1,086
  • 9
  • 24

2 Answers2

4

export RPROMPT=$'%F{cyan}%*%f' creates a simple, blue clock on the right side of the screen.

Go here for more info Zsh prompt

1

You could use this: liquidprompt

Perhaps in conjunction with antigen

A.B.
  • 460
  • 5
  • 18