# tmux.conf for the anaconda environment
set-option -s exit-unattached off
set-option -g base-index 1
set-option -g set-remain-on-exit on

new-session -s anaconda -n main "anaconda"

set-option status-right ""
set-option status-right-length 0

new-window -d -n shell          "bash --login"
new-window -d -n log            "tail -F /tmp/anaconda.log"
new-window -d -n storage-log    "tail -F /tmp/storage.log"
new-window -d -n program-log    "tail -F /tmp/program.log"

detach-client -s anaconda