9 lines
345 B
Bash
Executable File
9 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
SESSION=$1
|
|
|
|
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
|