numix-icon-theme
numix-icon-theme copied to clipboard
Notification icon for package-update-indicator.
Using Numix icon theme the notification icon for package-update-indicator looks like this:
The icon used is 'system-software-update':
static const gchar *icon_names[PUI_STATE_LAST] = {
[PUI_STATE_INITIAL] = "system-software-update",
[PUI_STATE_UP_TO_DATE] = "system-software-update",
[PUI_STATE_NORMAL_UPDATES_AVAILABLE] = "software-update-available",
[PUI_STATE_IMPORTANT_UPDATES_AVAILABLE] = "software-update-urgent",
[PUI_STATE_SESSION_RESTART_REQUIRED] = "system-log-out",
[PUI_STATE_SYSTEM_RESTART_REQUIRED] = "system-reboot",
[PUI_STATE_ERROR] = "dialog-warning"
};
My suggestion is to symlink 'update-none' to 'system-software-update-symbolic', So, it will look like this:
@darkshram If you still use Numix, will installing the Adwaita icon theme fix/alleviate this?
@palob I solved it creating a symlink as described in my comment 2½ years ago. The rpm package used in my Linux distribution includes the following modifications (along with other fixes):
ln -sfr \
%{buildroot}%{_datadir}/icons/Numix/16/status/update-none.svg \
%{buildroot}%{_datadir}/icons/Numix/scalable/status/system-software-update-symbolic.svg
ln -sfr \
%{buildroot}%{_datadir}/icons/Numix-Light/16/status/update-none.svg \
%{buildroot}%{_datadir}/icons/Numix-Light/scalable/status/system-software-update-symbolic.svg
```