fish/functions/tmux.fish
2024-05-22 20:41:05 +02:00

13 lines
242 B
Fish

if command -v tmux 2>&1
function ta
command tmux list-sessions 2>&1
switch $status
case '0'
tmux a
case '*'
echo "-- there are no tmux sessions | creating one now.. "
sleep 0.7
tmux
end
end
end