Not a sound, but another nice way to make the notification bell more attention grabbing:
@keyframes pulse {
0% { transform: scale(1);}
50% { transform: scale(1.5); }
100% { transform: scale(1); }
}
.new .NotificationsDropdown-unread {
animation: pulse 1s infinite;
}
Put this into your custom CSS. That's all.