Color display in the status bar #1069
-
It's okay to write anything in the status line as follows: But how can you write something in color? So, for example, how can I write with red text: Operation is completed? |
Beta Was this translation helpful? Give feedback.
Answered by
joelim-work
Apr 1, 2023
Replies: 1 comment 1 reply
-
You have to use escape sequences, just like what you would use for the lf -remote 'send echo "\033[31mOperation completed\033[0m"' |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
og900aero
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have to use escape sequences, just like what you would use for the
promptfmt
option:lf -remote 'send echo "\033[31mOperation completed\033[0m"'