some changes

This commit is contained in:
PieckA 2024-05-25 12:56:29 +02:00
parent d9ca8858cb
commit 8fd8f0f103

View file

@ -1,7 +1,10 @@
function ta
if command -v tmux list-sessions /dev/null 2>&1
 tmux a
 else
 tmux
 end
end
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