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

10 lines
159 B
Fish
Raw Normal View History

2025-03-02 14:26:08 +01:00
function top
if type -q btop
command btop $argv
else if type -q htop
command htop $argv
else
command top $argv
end
end