Files
dotfiles/fish/functions/tmux.fish
T
2023-11-27 15:15:10 +01:00

12 lines
183 B
Fish

function tmux
if test (count $argv) -eq 0
if type -q omf
# Update Oh My Fish if it installed
omf update
end
end
# Execute TMUX
/usr/bin/tmux -u $argv
end