fish/functions/tmux.fish
2024-05-25 12:56:29 +02:00

10 lines
193 B
Fish

function ta
if tmux list-sessions
echo "Tmux session found. Entering it now! --"
sleep 0.5
tmux a
else
echo "No Tmux session found. Creating one now! --"
tmux
end
end