how to change app icon?
You have to do some command-line fu:
- Copy the Desktop definition file of the application you want to change it’s icon to proper per-user path:
mkdir ~/.local/share/applications
cp /sysroot/flatpak/exports/org.gnome.Boxes.desktop ~/.local/share/applications
- Now edit this file:
gedit ~/.local/share/applications/org.gnome.Boxes.desktop
- And replace the following line with the Icon of your choice.
Icon=org.gnome.Boxes
For the Icon, you can either use a absolute path to point to a file in your home directory (e.g. Icon=/sysroot/home/users/Pictures/myicon.png
) or to some generic name from a icon set (e.g. Icon=rhythmbox
)
- Mark the file as trusted and restart the Shell
gio set ~/.local/share/applications/org.gnome.Boxes.desktop metadata::trusted yes
killall gnome-shell
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.