fish/functions/tmux.fish
2024-05-25 14:28:53 +02:00

12 lines
256 B
Fish

if command -v tmux >/dev/null 2>&1
function ta
if command tmux list-sessions >/dev/null 2>&1
echo "Tmux session found. Entering it now! --"
sleep 0.5
tmux a
else
echo "No Tmux session found. Creating one now! --"
tmux
end
end
end