dotfiles

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

commit 9bde88fbc822ed0a64b0dc97db1a1038da622e9d
parent 966b8c080a41d964d851de07d578779f77d43897
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri, 24 Jan 2020 12:51:21 +0100

Fix path to paper

Diffstat:
M.local/bin/tmux-article.sh | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/.local/bin/tmux-article.sh b/.local/bin/tmux-article.sh @@ -1,13 +1,12 @@ #!/bin/sh -cd $HOME/articles/own/8-continuum-granular-manuscript1/rev0/main-overleaf +cd $HOME/articles/own/8-continuum-granular-manuscript1/rev0/main SESSION=article8 tmux new-session -A -s "$SESSION" \ -n article "$SHELL -l -c 'make edit; $SHELL -l'" \; \ new-window -n si "cd ../si/ && make edit && $SHELL -l" \; \ new-window -n latexmk "make auto" \; \ - new-window -n exp "cd experiments && $SHELL -l" \; \ + new-window -n exp "cd ../experiments/ && $SHELL -l" \; \ select-window -t 1 - cd -