dotfiles/.config/fish/functions/dud.fish

8 lines
182 B
Fish

function dud -d "Display disk usage with dust"
if type -q dust
command dust --depth 1 -w 88 $argv
else
command echo "dust program not installed!"
end
end