commit b98b71da1010355e7900700a3fd4a6c0b4bf06c1 parent 1b1239cb000a775e27c205834e6a4979f15c1eeb Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Fri, 4 Oct 2019 13:49:33 +0200 Merge branch 'master' of src.adamsgaard.dk:src/dotfiles Diffstat:
A | .local/bin/tmux-article.sh | | | 12 | ++++++++++++ |
1 file changed, 12 insertions(+), 0 deletions(-)
diff --git a/.local/bin/tmux-article.sh b/.local/bin/tmux-article.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +cd $HOME/articles/own/8-continuum-granular-manuscript1 +SESSION=article8 + +tmux new-session -A -s "$SESSION" \ + -n article "make edit" \; \ + new-window -n latexmk "make auto" \; \ + new-window -n exp "cd experiments && $SHELL" \; \ + select-window -t 1 + +cd -