feat: zshr tmux helper

This commit is contained in:
Jeremy Wall 2024-07-09 16:09:52 -05:00
parent 397d0e8d3b
commit 49e16608e0

View File

@ -20,3 +20,9 @@ function service_restart() {
function root_shell() {
sudo -E zsh -i /etc/zshrc
}
function wrkspc() {
local wd=$(pwd)
local session=$(basename $wd)
tmux new -A -s $session
}