I want to make use of all the icons which are installed on my computer to make art, posters and designs, what is the best way of making them all easily browsable from inkscape?
That will copy all SVG files into an svg folder in your home. You can of course adjust those paths as needed. Since a lot of the System SVG's (Icon sets) are the same name among theme. This will copy them into the SVG folder like so:
This /usr/share/icons/Humanity/actions/22/mail-read.svg becomes ~/svg/Humanity-actions-22-mail-read.svg meaning you can view them in one Nautilus folder without having to traverse often cumbersome directory structures.
Another alternative - to keep all your SVGs in the same location, but have them update when theme icon-sets get updated - would be to symlink them all to that folder. As long as you performed a "Save-As" instead of overwriting icons when working on them:
I've found locate to be the fastest/most useful tool for things like this. Try running locate *.svg > ~/svgs.txt in a terminal or from Alt+F2.
To access them from inkscape, you could possibly do a little scripting (I'm no bash genius :P), so that you produce symlinks to a new folder with all the existing svgs (from the output of locate). Maybe if you can make a script that reads the contents of each line and does ln -s $line ~/Art/svgs or something.
You can use locate and it will be fast but will only contain the files since the last updatedb was executed (usually executed from /etc/cron.daily/mlocate)
If you want to make a copy of them all in to one directory try the following:
That will copy all SVG files into an svg folder in your home. You can of course adjust those paths as needed. Since a lot of the System SVG's (Icon sets) are the same name among theme. This will copy them into the SVG folder like so:
This
/usr/share/icons/Humanity/actions/22/mail-read.svg
becomes~/svg/Humanity-actions-22-mail-read.svg
meaning you can view them in one Nautilus folder without having to traverse often cumbersome directory structures.Another alternative - to keep all your SVGs in the same location, but have them update when theme icon-sets get updated - would be to symlink them all to that folder. As long as you performed a "Save-As" instead of overwriting icons when working on them:
In nautilus:
The virtual search folder will update automatically. It wont be fast... But it should work.
I've found locate to be the fastest/most useful tool for things like this. Try running
locate *.svg > ~/svgs.txt
in a terminal or from Alt+F2.To access them from inkscape, you could possibly do a little scripting (I'm no bash genius :P), so that you produce symlinks to a new folder with all the existing svgs (from the output of locate). Maybe if you can make a script that reads the contents of each line and does
ln -s $line ~/Art/svgs
or something.You can use locate and it will be fast but will only contain the files since the last updatedb was executed (usually executed from /etc/cron.daily/mlocate)
the -i option make the pattern case insensitive.
This will list all files with .svg extension
To get the output to a file:
UPDATE: To copy all .svg files in to a specific folder
This will copy all .svg files to /mnt/output_folder