mirror of
https://github.com/tmux/tmux.git
synced 2024-11-05 10:28:48 +00:00
86 lines
1.6 KiB
Plaintext
86 lines
1.6 KiB
Plaintext
# Default global options.
|
|
set -g status-bg green
|
|
set -g status-right-length 60
|
|
set -g default-command "exec /bin/ksh -l"
|
|
set -g bell-action none
|
|
set -g lock-after-time 1800
|
|
|
|
# Default global window options.
|
|
#setw -g remain-on-exit on
|
|
|
|
# Prefix key.
|
|
set -g prefix C-a
|
|
unbind C-b
|
|
bind C-a send-prefix
|
|
|
|
# Unlock password.
|
|
pass -c '$2a$06$7LpuTSfDjcz.KD3a9mdEuuJmC.zEq6RBqHWMjdv9/qqzrfWedUBHe'
|
|
|
|
# Keys to switch session.
|
|
bind q switchc -t0
|
|
bind w switchc -t1
|
|
bind e switchc -t2
|
|
|
|
# Other key bindings.
|
|
bind i choose-window
|
|
|
|
bind m setw monitor-activity
|
|
|
|
bind y setw force-width 81
|
|
bind u setw force-width 0
|
|
|
|
bind D detach \; lock
|
|
bind N neww \; splitw -d
|
|
|
|
bind '~' split-window "exec top -s 0.5"
|
|
bind "#" split-window "exec ncmpc -f ~/.ncmpc.conf"
|
|
bind / command-prompt "split-window 'exec man %%'"
|
|
|
|
# First session.
|
|
new -d -s0 -nirssi 'exec ssh -t natalya screen -DRS irssi irssi'
|
|
setw -t0:0 monitor-activity on
|
|
setw -t0:0 aggressive-resize on
|
|
set -t0 status-bg green
|
|
neww -d -ntodo 'exec emacs ~/TODO'
|
|
setw -t0:1 aggressive-resize on
|
|
neww -d -nncmpc 'exec ncmpc -f ~/.ncmpc.conf'
|
|
setw -t0:2 aggressive-resize on
|
|
neww -d -nmutt 'exec mutt'
|
|
setw -t0:3 aggressive-resize on
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
|
|
# Second session.
|
|
new -d -s1
|
|
set -t1 status-bg cyan
|
|
linkw -dk -t0 -s0:0
|
|
linkw -dk -t1 -s0:1
|
|
linkw -dk -t2 -s0:2
|
|
linkw -dk -t3 -s0:3
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
|
|
# Third session.
|
|
new -d -s2
|
|
set -t2 status-bg yellow
|
|
linkw -dk -t0 -s0:0
|
|
linkw -dk -t1 -s0:1
|
|
linkw -dk -t2 -s0:2
|
|
linkw -dk -t3 -s0:3
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|
|
neww -d
|