How can I move tmux's status bar to the top? Can't find it on the man page.
Asked
Active
Viewed 3.9k times
2 Answers
100
Add set-option -g status-position top
to ~/.tmux.conf
. (See @ChrisJohnsen's comment above)

Josh The Geek
- 1,159
25
The feature request Michael Mrozek mentioned has been closed with the feature being available in the next release (1.7). The request says you can test it out now by building from SVN. If you use Homebrew on Mac OS X you could (theoretically) just do brew upgrade --HEAD tmux
. Unfortunately I upgrade to Xcode 4.3 which seems to be missing autoconf/automake.

nnutter
- 403
- 5
- 5
-
22This is how it would look in
~/.tmux.conf
:set-option -g status-position top
(the default isbottom
). – Chris Johnsen Mar 06 '12 at 07:33
byobu
(which in turn uses tmux) then edit~/.byobu/.tmux.conf
if it exists – STW Mar 27 '15 at 17:32set-window-option
instead ofset-option
for it to work – Peeyush Kushwaha Jun 14 '18 at 07:16touch ~/.tmux.conf
first (just in case it's unclear to someone else in the future) – Stachu Feb 06 '24 at 21:04