guest@dotshare [~/groups/terms/tmux] $ ls tabs/ | cat

tabs (scrot, raw, dl)

causes Sep 27, 2014 (terms/tmux)

SCROT

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
set -g base-index 1
set -g default-terminal "st-256color"
set -g history-limit 4096
set -g mouse-select-pane on
set -g mouse-select-window on
set -g set-titles on
set -g set-titles-string '#T'
set -g status on
set -g status-left ''
set -g status-position bottom
set -g status-right "#[bg=brightblack]#[fg=green] #T "
set -g status-style "bg=black"

setw -g mode-mouse off
setw -g pane-base-index 1
setw -g window-status-format "#[bg=magenta]#[fg=black] #I #[bg=brightblack]#[fg=green] #W "
setw -g window-status-current-format "#[bg=brightmagenta]#[fg=black] #I #[bg=green]#[fg=black] #W "

bind r source-file ~/.tmux.conf

CLICK TO VIEW

x