If you spend a lot of time in tmux you will probably like to replace the default status bar:
with something custom - for example something like this:
Configuration
To achieve this, you can copy to your ~/.tmux.conf
following configuration:
set-option -g status on
set-option -g status-interval 2
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set -g status-right '[#S]'
The result
With the configuration in place, the tmux status bar looks like:
The color is more vibrant than in the example above - where I had seebi/tmux-colors-solarized
applied. If you are interested in an article how to set it up, let me know in the comments.
Top comments (0)