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 6ccba97f2a5231fb15b0ea08d3cb9cddf4c4c3c2
parent 619c063b6e8d70555f4aec500691e359ec1e1c88
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 25 Nov 2019 11:39:52 +0100

Open child shells as login shells

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

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