sgonzalez
sgonzalez

Reputation: 1096

Clock in zsh prompt

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.

Upvotes: 2

Views: 2595

Answers (2)

A.B.
A.B.

Reputation: 480

You could use this: liquidprompt

Perhaps in conjunction with antigen

Upvotes: 1

rubybananas
rubybananas

Reputation: 56

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

Go here for more info Zsh prompt

Upvotes: 4

Related Questions