10 lines
159 B
Fish
10 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
|