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

9 lines
128 B
Fish

if command -v tmux 2>&1
function ta
if command tmux list-sessions 2>&1
tmux a
else
tmux
end
end
end