Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/DBus.vala
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public class Notifications.Server : Object {
name = "io.elementary.notifications";
vendor = "elementaryOS";
version = "0.1";
spec_version = "1.2";
spec_version = "1.3";
}

public new uint32 notify (
Expand Down Expand Up @@ -237,6 +237,13 @@ public class Notifications.Server : Object {
unowned string sound;

switch (category) {
case "call":
case "call.ended":
case "call.incoming":
case "call.unanswered":
// We probably should use "phone-incoming-call" but it sounds awful in freedesktop theme
sound = "dialog-information";
break;
case "device.added":
sound = "device-added";
break;
Expand Down