ungoogled-software/ungoogled-chromium-macos

Duplicate entry in Notification Center upon fresh install

socketbox opened this issue · 2 comments

Fresh installation of Ungoogled Chromium on macOS 12.1 beta. Notification Center shows two nearly identical entries (from user's standpoint). One has banner notifications enabled, the other Alerts.
Screen Shot 2021-12-08 at 7 45 58 PM
Screen Shot 2021-12-08 at 7 45 44 PM

This might be caused by Chromium.app being present in (two) different locations.

Try running this in Terminal:

mdfind -name Chromium.app

If that only yields one location it might also be an Electron app where the Chromium.app is detected by macOS Notification service.

If you're using brew (Homebrew package manager) check in the HOMEBREW_PREFIX folder.

This will show you the HOMEBREW_PREFIX folder

brew config

Then run something like this:

find /usr/local/ /opt/homebrew -name Chromium.app 2>/dev/null 

Otherwise you could run find starting on / (with or without sudo)

sudo find / -name Chromium.app 2>/dev/null 

I hope your question(-s) has(-ve) been answered, otherwise please let us know.
Closing this issue for now.