mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-01 16:53:07 +01:00
8 lines
182 B
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
|