# Show Music song notifications

Display a notification when a new song starts in the Music app.

  • Tested on macOS:
    • Catalina
  • Parameter type: bool

# Set to false (default value)

Notifications will not be displayed.

defaults write com.apple.Music "userWantsPlaybackNotifications" -bool "false" && killall Music

# Set to true

Notifications will be displayed.

defaults write com.apple.Music "userWantsPlaybackNotifications" -bool "true" && killall Music

# Read current value

defaults read com.apple.Music "userWantsPlaybackNotifications"

# Reset to default value

defaults delete com.apple.Music "userWantsPlaybackNotifications" && killall Music