Similar to the answer by @Lekensteyn, I found that the file manager PCManFM-Qt (executable pcmanfm-qt
) can be used in a similar fashion. It is the default file manager installed under LXQt, but can also be installed in any Ubuntu installation with sudo apt install pcmanfm-qt
.
Go to an icon (sub-)folder of interest, such as /usr/share/icons/breeze
.
Set "View → View → Icon view" for a folder view with icon thumbnails.
Open the "Tools → Find Files…" dialog and search using the following parameters:
- File Name Patterns:
*
- Use regular expression: checked
- Search in sub directories: checked
- File Type → Image files: checked
When clicking next to the Search button above the result list, you will see that the file manager uses a search URL internally to represent this search, such as:
search:///usr/share/icons/breeze?recursive=1&name_regex=*&mime_types=image/*
You can copy&paste this for future use to get back to these search results faster, and you can also start the file manager to show these search results immediately:
pcmanfm-qt "search:///usr/share/icons/breeze?recursive=1&name_regex=*&mime_types=image/*"
find /usr/share/icons/breeze/apps/48/ -type f -exec bash /tmp/make-icons-link {} ; find /usr/share/icons/breeze/status/64/ -type f -exec bash /tmp/make-icons-link {} ;
– Jungle Editor Jul 07 '20 at 09:06