https://becomethesolution.com/blogs/mac/remove-update-notification-for-macos-catalina-10-15-mac-system-preferences


If you do not want to upgrade to macOS Catalina 10.15 in the near future, you can remove the System Preferences upgrade notification (red badge) for it.

 1. Go to System Preferences -> Advanced and uncheck check for updates, Download new updates when available, and Install macOS updates.

2. Open Terminal and type the following commands to remove the update notification from System Preferences.

>
This command will disable updates for macOS Catalina / Big Sur / Monterey:
sudo softwareupdate --ignore "macOS Catalina"

sudo softwareupdate --ignore "macOS Big Sur"

sudo softwareupdate --ignore "macOS Monterey"
>
This command prevents the red notification badge in System Preferences:
defaults write com.apple.systempreferences AttentionPrefBundleIDs 0

>
This command will reset the System Preferences icon:
killall Dock

>
If you decide later you want to include macOS Catalina 10.15 updates again, type the following command in Terminal:
sudo softwareupdate --reset-ignored