Skip to content

Instantly share code, notes, and snippets.

@volh
Created March 7, 2012 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save volh/1996780 to your computer and use it in GitHub Desktop.
Save volh/1996780 to your computer and use it in GitHub Desktop.
# Adopted from Han Boetes.
set -g visual-bell on
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 white
#set -g set-remain-on-exit on
set-window-option -g window-status-current-attr bright,reverse
set-window-option -g window-status-current-bg white
set-window-option -g window-status-current-fg black
# Use c-j instead of c-b as the prefix
unbind C-b
set -g prefix C-j
bind C-j send-prefix
#unbind ^l
bind ^j last-window
# All new windows started at startup.
new -s0 -n main
neww -d -n system "cd currentproject; make watch"
#neww -d -t4 -nmutt "exec mutt"
neww -d -t5 -ndev "cd currentproject; exec zsh"
neww -d -t6 -nvideo "cd video; exec zsh"
#select-window -t 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment