Notifications showing just what I want?

Hi All,

I'm running Ubuntu MATE (Traditional layout) and have an issue with the Indicator Applet on the top panel. While I want it to display certain indicators (like notifications), it’s also showing unwanted items such as:

  • Sound Settings
  • Networking
  • Accessibility
  • Reboot/Shutdown options

I already have separate applets for the clock and networking with custom settings I prefer, and I don’t want these duplicated or included in the Indicator Applet.

What I’ve Tried So Far:

  1. Masking Services:
    I tried masking the Ayatana Indicator services with systemctl --user mask, such as:

bash

Copy code

systemctl --user mask ayatana-indicator-sound.service
systemctl --user mask ayatana-indicator-session.service
systemctl --user mask ayatana-indicator-datetime.service

Unfortunately, this did not remove the respective items from the Applet.

  1. Resetting Indicator Applet Entries:
    I reset entries via dconf for NotificationAreaAppletFactory and similar object IDs under /org/mate/panel/.
    This also did not stop unwanted items from showing.

  2. Switching to Notification Area Applet:
    I tested the Notification Area applet instead of the Indicator Applet. While it worked partially, some applications that rely on SNI (StatusNotifierItems) did not appear in this alternative.

  3. Third-Party System Tray Options:
    I tested tools like stalonetray and trayer, but they presented compatibility issues:

  • Errors about “another systray already running”
  • They wouldn’t integrate properly into MATE’s panel setup.

Current State:

The Indicator Applet works but still shows the unwanted items mentioned earlier. My question is:

Is there any way to selectively hide or disable specific items in the Indicator Applet (e.g., Sound, Accessibility, Networking, Reboot/Shutdown)?

If not, are there any alternative solutions or applets that would allow me to show only the indicators I want while maintaining compatibility with applications using SNI or similar protocols?

Thanks in advance for any insights or suggestions!

2 Likes

Hi, @Mex5150 and welcome to the Ubuntu MATE Community!

1 Like

From what I know Indicator applet is meant to have those features since the applet is designed for the purpose to have all those things in one little applet. When you right-click the panel you should see all other applets and my suggestion would be to test out all of them to see which one you'd like to have and which one is redundant to your needs.

If you want custom panel applets this thread might have more information about it:

If you want to do things from terminal here is the solution for you:

To reorder indicators visit this forum thread:

Hope it helps! Have a nice day :grin:

2 Likes

Hi Mex,

Best to undo what you already have done and do this:
mate-control-center -> autostart applications


Check "show hidden" and then just uncheck the ayatana-indicators you want to disappear.

You can also use the commandline instead if you prefer that:

sed -i 's/NoDisplay=false/NoDisplay=true/g' $HOME/.config/autostart/ayatana-indicator-datetime.desktop
3 Likes

Once these changes have been made you can make more changes like to the power indicator with the gui version of dconf editor. You may need to install that. It gives you options like showing the time remaining of your battery or the percentage remaining of the battery, or both, which is what I do. Be careful with dconf, make sure you remember or log the changes you make so you can change them back if you want or need to and don't break your system.

3 Likes

Or you can use mate-control-center -> indicators to change those values.

3 Likes