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

8 lines
182 B
Fish
Raw Normal View History

2022-07-07 18:32:27 +02:00
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