698d5317f6
tmux is a "terminal multiplexer". It enables a number of terminals (or windows) to be accessed and controlled from a single terminal. tmux is intended to be a simple, modern, BSD-licensed alternative to programs such as GNU screen. The import of tmux is intended to replace window(1) in the not-too-distant future. For reference, tmux is also present in the base system of FreeBSD and OpenBSD. Approved by core@.
43 lines
917 B
Plaintext
43 lines
917 B
Plaintext
# $Id: h-boetes.conf,v 1.1.1.1 2011/03/10 09:15:41 jmmv Exp $
|
|
#
|
|
# From Han Boetes.
|
|
|
|
set -g default-command zsh
|
|
set -g status-right "#(uptime|awk '{print $11}') #(date)"
|
|
|
|
# Statusbar properties.
|
|
set -g display-time 3000
|
|
set -g status-bg black
|
|
set -g status-fg cyan
|
|
set-window-option -g window-status-current-attr bright,reverse
|
|
set-window-option -g window-status-current-bg cyan
|
|
set-window-option -g window-status-current-fg black
|
|
|
|
# Use c-t instead of c-b as the prefix
|
|
unbind C-b
|
|
set -g prefix C-t
|
|
bind C-t send-prefix
|
|
bind t send-prefix
|
|
|
|
# Bind function keys.
|
|
bind -n F1 select-window -t 1
|
|
bind -n F2 select-window -t 2
|
|
bind -n F3 select-window -t 3
|
|
bind -n F4 select-window -t 4
|
|
bind -n F5 select-window -t 5
|
|
bind -n F6 select-window -t 6
|
|
bind -n F7 select-window -t 7
|
|
bind -n F8 select-window -t 8
|
|
|
|
# All new windows started at startup.
|
|
new emacs
|
|
neww irssi
|
|
neww mutt
|
|
neww
|
|
neww
|
|
neww
|
|
neww
|
|
neww
|
|
|
|
select-window -t 1
|