dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles # fast
git clone https://src.adamsgaard.dk/dotfiles.git # slow
Log | Files | Refs | README | LICENSE Back to index

tmux-article.sh (369B)


      1 #!/bin/sh
      2 
      3 cd $HOME/articles/own/8-continuum-granular-manuscript1/rev0/main
      4 SESSION=article8
      5 
      6 tmux new-session -A -s "$SESSION" \
      7 	-n article "$SHELL -l -c 'make edit; $SHELL -l'" \; \
      8 	new-window -n si "cd ../si/ && make edit && $SHELL -l" \; \
      9 	new-window -n latexmk "make auto" \; \
     10 	new-window -n exp "cd ../experiments/ && $SHELL -l" \; \
     11 	select-window -t 1
     12 cd -