Icon sizeForum: Other Help Topics Topic: Icon size started by: alan4home Posted by alan4home on Oct. 03 2005,18:11
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 Posted by SaidinUnleashed on Oct. 03 2005,18:31
you can use the gimp to shrink the images in ~/.xtdesktop to your desired size.Or Xpaint, if you are desparate. Posted by mikshaw on Oct. 03 2005,20:43
Or using ImageMagick:for file in /home/dsl/.xtdesktop/*.{png,gif}; do /opt/imagemagick/bin/convert -resize 32x32 $file $file; done |