setup-life-display

Instructions and scripts to setup sdl2-life on a Raspberry Pi
git clone https://www.brianlane.com/git/setup-life-display
Log | Files | Refs | README

tmux.conf (459B)


      1 bind -n M-tab next
      2 bind -n F1 list-keys
      3 
      4 set-option -g exit-unattached off
      5 set-option -g base-index 1
      6 
      7 set-option -g history-limit 100
      8 set-window-option -g aggressive-resize on
      9 
     10 new-session -s life -n main "/home/life/run-life-server; bash --login"
     11 set-option -s remain-on-exit on
     12 
     13 set-option status-right '#[fg=blue]#(echo -n "Switch tab: Alt+Tab | Help: F1 ")'
     14 
     15 new-window -d -n shell          "bash --login"
     16 new-window -d -n journal-log    "journalctl -f"