Movint to Fish + Tide

This commit is contained in:
Rodolphe Bréard 2025-03-02 14:26:08 +01:00
parent 4b08537918
commit ae7e402728
Signed by: rodolphe
SSH key fingerprint: SHA256:3rodCKnk1MUOfSlIKY0nHbBtvFyQx4EqjS+JIy69lN0
28 changed files with 167 additions and 326 deletions

View file

@ -0,0 +1,9 @@
function top
if type -q btop
command btop $argv
else if type -q htop
command htop $argv
else
command top $argv
end
end