This commit is contained in:
2025-03-27 09:10:04 -04:00
parent 30e7cf3d02
commit 42b683b62b
3 changed files with 4 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ function work() {
tmux new -A -s "$(basename -- $goto)" -c "$goto"
else
tmux new -d -s "$(basename -- $goto)" -c "$goto"
tmux switch-client -t "$(basename -- $goto)"
tmux switch-client -t "$(basename -- $goto | tr . _)"
fi
}
@@ -51,3 +51,4 @@ alias dotvenv='source .venv/bin/activate'
alias todo='rusty-tasks'
alias ccat='bat'
alias we='watchexec'
alias netcheck='ping 8.8.8.8'