4

The icon I'm talking about is the one on the panel that looks like a gear. Its menu includes a power button, Shut down, Suspend, Logout and all that.

enter image description here

It's the default icon and to be perfectly frank... I absolutely hate it, but I can't change it without messing with the entire panel (Ubuntu-Mono-dark which I LOVE).

How can you change that icon, and that icon only?

Jacob Vlijm
  • 85,475

1 Answers1

3

At least on 16.04 and 16.10, the icon is located:

/usr/share/icons/ubuntu-mono-dark/status/22/system-devices-panel.svg

enter image description here

As you can see, to test, I replaced it with an owncloud icon :)

enter image description here

Notes

  1. No need yo say that your new icons need to be of the same type (.svg)
  2. To edit/replace fioes in /usr you need administrator`s permissions. After backing up the old icons, simply run the command (from a terminal):

    sudo cp /path/to/new/icon.svg  /usr/share/icons/ubuntu-mono-dark/status/22/system-devices-panel.svg
    
  3. You might also want to replace:

    /usr/share/icons/ubuntu-mono-dark/status/22/system-devices-panel-alert.svg
    

    and

    /usr/share/icons/ubuntu-mono-dark/status/22/system-devices-panel-information.svg
    

    ...to make a matching set in case there would be a change in state for some reason.

Jacob Vlijm
  • 85,475