I like to personalize my Nautilus
icons from folders and files with images.
The problem is that all the times that I format my computer I lose all the icons that I've worked so hard to organize. So, is there a way to backup all these personalized "thumbnails" that I've been using on Nautilus
? Where are they stored? Can I backup the configuration from a specific folder and then replicate it on a different computer that uses Nautilus
and has the same folder structure?
I've ended up creating a script to solve my problem. That's not exactly a backup solution but it works for me.
The idea of this script is that we need to give it the path of two folders:
iconsFolder
)folderToBeUpdated
)The script will check the icons and the folders with the same name and then it will insert icons on specific folders in case that's true, e.g a folder inside
folderToBeUpdated
is calledexample
and I have an icon calledexample.png
inside myiconsFolder
, so the iconexample.png
will be inserted as the folderexample
's icon (if the name isn't the same the script won't do anything).PS: It's necessary to press
F5
after running the script in order to see the icons.That's just a functional script but it turns out to be useful because I can easily replicate my icons on different computers. In any case, if anyone knows a way to do backups of icons in a more convenient way, feel free to write a new answer or give suggestions in the comments.