10 lines
418 B
Bash
Executable File
10 lines
418 B
Bash
Executable File
#!/bin/bash
|
|
SESSION=$1
|
|
|
|
tmux send-keys -t "$SESSION:1" "cd ~/workspace/private/ma-thesis/" Enter
|
|
tmux send-keys -t "$SESSION:1" "./.setup_local_env.sh" Enter
|
|
# tmux send-keys -t "$SESSION:1" "export TEXINPUTS=./lib/cel-slides-template-2025:\$TEXINPUTS" C-m
|
|
tmux send-keys -t "$SESSION:1" "trap './.clean_local_env.sh' EXIT" Enter
|
|
tmux send-keys -t "$SESSION:1" "nvim" Enter
|
|
tmux send-keys -t "$SESSION:1" "\\ll" Enter
|