feat: wrkspc can navigate now too

This commit is contained in:
Jeremy Wall 2024-09-24 17:03:47 -04:00
parent d7d27a5520
commit b8a0cd9113

View File

@ -22,7 +22,8 @@ function root_shell() {
}
function wrkspc() {
local wd=$(pwd)
local wd=${1:-$(pwd)}
cd ${wd}
local session=$(basename $wd)
tmux new -A -s $session
}