numix-icon-theme icon indicating copy to clipboard operation
numix-icon-theme copied to clipboard

Notification icon for package-update-indicator.

Open darkshram opened this issue 4 years ago • 2 comments

Using Numix icon theme the notification icon for package-update-indicator looks like this:

Captura de pantalla_2020-11-18_13-13-15

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:

Captura de pantalla_2020-11-18_13-24-44

darkshram avatar Nov 18 '20 19:11 darkshram

@darkshram If you still use Numix, will installing the Adwaita icon theme fix/alleviate this?

palob avatar Feb 15 '23 23:02 palob

@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
    ```

darkshram avatar Feb 15 '23 23:02 darkshram