diff --git a/resources/rssguard.qrc b/resources/rssguard.qrc
index c963c38ad..697175ccb 100755
--- a/resources/rssguard.qrc
+++ b/resources/rssguard.qrc
@@ -8,6 +8,8 @@
sounds/boing.wav
sounds/rooster.wav
sounds/sheep.wav
+ sounds/doorbell.wav
+ sounds/notify.wav
scripts/adblock/adblock-server.js
scripts/public_suffix_list.dat
diff --git a/resources/sounds/doorbell.wav b/resources/sounds/doorbell.wav
new file mode 100755
index 000000000..594d1d722
Binary files /dev/null and b/resources/sounds/doorbell.wav differ
diff --git a/resources/sounds/notify.wav b/resources/sounds/notify.wav
new file mode 100755
index 000000000..862210fd3
Binary files /dev/null and b/resources/sounds/notify.wav differ
diff --git a/resources/sounds/rooster.wav b/resources/sounds/rooster.wav
index f1c18546d..f4f0266d4 100755
Binary files a/resources/sounds/rooster.wav and b/resources/sounds/rooster.wav differ
diff --git a/src/librssguard/miscellaneous/application.cpp b/src/librssguard/miscellaneous/application.cpp
index a2372fe60..1faad8881 100755
--- a/src/librssguard/miscellaneous/application.cpp
+++ b/src/librssguard/miscellaneous/application.cpp
@@ -97,7 +97,7 @@ Application::Application(const QString& id, int& argc, char** argv)
m_notifications->save({
Notification(Notification::Event::GeneralEvent, true),
Notification(Notification::Event::NewUnreadArticlesFetched, true,
- QSL("%1/rooster.wav").arg(SOUNDS_BUILTIN_DIRECTORY)),
+ QSL("%1/notify.wav").arg(SOUNDS_BUILTIN_DIRECTORY)),
Notification(Notification::Event::NewAppVersionAvailable, true),
Notification(Notification::Event::LoginFailure, true)
}, settings());