7 lines
166 B
Fish
7 lines
166 B
Fish
function t --wraps=tmux --description 'alias t=tmux'
|
|
if type -f tmux &>/dev/null
|
|
tmux new-session $argv
|
|
else
|
|
missing_package tmux
|
|
end
|
|
end
|