Other Help Topics :: Icon size



Is there any way to resize (reduce) desktop icons in DSL?   I've looked everywhere and can't find a way to do it.

Thanks

you can use the gimp to shrink the images in ~/.xtdesktop to your desired size.

Or Xpaint, if you are desparate.

Or using ImageMagick:
for file in /home/dsl/.xtdesktop/*.{png,gif}; do /opt/imagemagick/bin/convert -resize 32x32 $file $file; done


original here.