How to display escaped characters in tmux status bar

Posted by walrus on Super User See other posts from Super User or by walrus
Published on 2012-10-23T20:52:33Z Indexed on 2012/10/23 23:04 UTC
Read the original article Hit count: 255

Filed under:
|
|
|

i am running tmux from a tty on an embedded linux device. (NOT a terminal emulator) because the screen is rather small, i want to add some "icons" to the tmux status bar. to achieve this, i have simply created a font with the appropriate glyphs for things like battery, or wifi. i can load the font, and display the characters with calls that use an escape to the line drawing characters like so:

echo -e "\xe\234\xf"

\xe escapes me into line drawing character mode, \234 is my created character, and \xf returns me to normal character mode so my terminal doesnt start getting goofy.

this works perfectly if i enter the command at the terminal whether tmux is started or not. the issue arises if i then try to use it in my ~/.tmux.conf file for the status bar. i currently have a line like this:

set -g status-right "#(echo -e "\xe\234\xf") #(/script/to/output/powerlevel)

this simply outputs

\xe\234\xf powerlevel

this goes the same if i try printf over echo. this is the output i would expect to get on the terminal if i made the call without passing -e to echo, or without enclosing the statement with quotes.

i then decided to wrap the calls to the echo or printf in a shell script. again, the script works when called from the terminal, but not in tmux's status bar. now i get the unprintable character "?" instead of my icon, like this:

? powerlevel

this is what i would expect if i did not use the line drawing escapes previously mentioned above, or if i tried to copy and paste the character as text using tmux. in addition, the calling of these character scripts screws up the rest of my status-right, as the clock has about 6 digits for minutes when it is called (though it correctly only updates two of them).

how can i make tmux respect the escape characters?

any help or insight is greatly appreciated.

© Super User or respective owner

Related posts about linux

Related posts about terminal