dotfiles/.config/fish/functions/top.fish

9 lines
159 B
Fish

function top
if type -q btop
command btop $argv
else if type -q htop
command htop $argv
else
command top $argv
end
end