dotfiles/.config/fish/functions/dud.fish
2022-07-07 11:32:27 -05:00

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