fish/functions/tmux.fish
2024-05-25 00:01:21 +02:00

13 lines
262 B
Fish

if command -v tmux /dev/null 2>&1
function ta
command tmux list-sessions /dev/null 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