Personalize o seu Tmux

Cenário

Tmux 1.8 permite que você coloque a barra de status no topo. É realmente ótimo.

Abra o seu ~ / .tmux.conf e edite-o (copie parte do seguinte como desejar)

Para adicionar ícones de volume e bateria à barra de status, você deve instalar primeiro o amixer e o acpi.

# change key binding from C-b to Emacs style C-x
set-option -g prefix C-x
unbind
-key C-b
bind
-key C-x send-prefix

# interface
#------------
# pane
#------------
set -g mouse-select-pane on
set -g pane-border-fg black
set -g pane-active-border-fg blue

#------------
# tabs
#------------
setw
-g window-status-format "#[fg=white]#[bg=blue] #I #[bg=blue]#[fg=white] #W "
setw
-g window-status-current-format "#[bg=brightmagenta]#[fg=white] *#I #[fg=white,bold]#[bg=cyan] [#W] "
setw
-g window-status-content-attr bold,blink,reverse

#------------
# status bar
#------------
set-option -g status-position top
set -g status-fg white
set -g status-bg blue
set -g status-left ''
set -g status-right-length 60
set -g status-right '♪ #(exec amixer get Master | egrep -o "[0-9]+%" | egrep -o "[0-9]*") | ♥#(acpi | cut -d ',' -f 2) | %a %m-%d %H:%M'

Veja o arquivo