Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to config tmux to move window lists from default bottom to top?

Tags:

tmux

I want to move window lists from bottom to top.

Application's status bar looks weird to me if it was above tmux's window list.

Any hints?

like image 300
hero2008 Avatar asked Mar 07 '12 14:03

hero2008


People also ask

How do I rearrange windows in tmux?

Pressing Ctrl+Shift+Left (will move the current window to the left.

What is the difference between a session and a window tmux?

Session is a set of windows, plus a notion of which window is current. Window is a single screen covered with panes. (Once might compare it to a 'virtual desktop' or a 'space'.) Pane is a rectangular part of a window that runs a specific command, e.g. a shell.


1 Answers

See this answer on Unix & Linux. If you build from SVN you can set the status bar on top with:

set-option -g status-position top

This will be included in tmux 1.7

like image 161
jasonwryan Avatar answered Jan 03 '23 07:01

jasonwryan