10 lines
160 B
Bash
10 lines
160 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Custom tmux new window to apply $WORK_DIR for all commands
|
||
|
tnw() {
|
||
|
tmux new-window -c "$WORK_DIR" "$@"
|
||
|
}
|
||
|
|
||
|
tsk() {
|
||
|
tmux send-keys "$@"
|
||
|
}
|