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

11 lines
161 B
Fish

if command -v tmux 2>&1
function ta
command tmux list-sessions 2>&1
switch $status
case '0'
tmux a
case '*'
tmux
end
end
end