We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Environment (OS name and version): Any GNU/Linux distribution
Hi, currently the icon path in the created .desktop launcher file is hardcoded to: Icon=/usr/share/redis-desktop-manager/bin/rdm.png
Icon=/usr/share/redis-desktop-manager/bin/rdm.png
This prevents icon theming without editing the launcher file.
I'd like to ask you to change the icon location as well as the icon path line in the launcher according to the freedesktop.org standards.
freedesktop.org
Please find more info here: http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html https://github.com/Foggalong/hardcode-fixer/wiki/What,-Why-&-How
According to the above resources standard icon locations are:
/usr/share/icons/hicolor/[size]/apps/[icon name] ~/.local/share/icons/hicolor/[size]/apps/[icon name] /usr/share/pixmaps/[icon name]
/usr/share/icons/hicolor/[size]/apps/[icon name]
~/.local/share/icons/hicolor/[size]/apps/[icon name]
/usr/share/pixmaps/[icon name]
The corresponding standard icon line in the .desktop launcher is: Icon=[icon name] (without full path, without file extension)
Icon=[icon name]
For an icon rdm.svg or rdm.png stored in a standard location it would read: Icon=rdm
rdm.svg
rdm.png
Icon=rdm
Cf. this example .desktop launcher.
.desktop
Could you please install the icon to one of those locations and adjust the icon path in the .desktop file accordingly?
The text was updated successfully, but these errors were encountered:
Fixed in 0.9.4
Sorry, something went wrong.
Thanks.
No branches or pull requests
Environment (OS name and version): Any GNU/Linux distribution
Hi,
currently the icon path in the created .desktop launcher file is hardcoded to:
Icon=/usr/share/redis-desktop-manager/bin/rdm.png
This prevents icon theming without editing the launcher file.
I'd like to ask you to change the icon location as well as the icon path line in the launcher according to the
freedesktop.org
standards.Please find more info here:
http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html
https://github.com/Foggalong/hardcode-fixer/wiki/What,-Why-&-How
According to the above resources standard icon locations are:
/usr/share/icons/hicolor/[size]/apps/[icon name]
~/.local/share/icons/hicolor/[size]/apps/[icon name]
/usr/share/pixmaps/[icon name]
The corresponding standard icon line in the .desktop launcher is:
Icon=[icon name]
(without full path, without file extension)For an icon
rdm.svg
orrdm.png
stored in a standard location it would read:Icon=rdm
Cf. this example
.desktop
launcher.Could you please install the icon to one of those locations and adjust the icon path in the .desktop file accordingly?
The text was updated successfully, but these errors were encountered: