GLib.Notification and Gnome-shell
问题 I'm trying to make use of the GLib.Notification api in Synapse project https://code.launchpad.net/~jeremy-munsch/synapse-project/fix-notification/+merge/273323 It is working on some DE, except gnome-shell. My implementation is basically this : var notification = new GLib.Notification (_("Synapse - Pastebin")); notification.set_body (msg); var gicon = GLib.Icon.new_for_string ("synapse"); notification.set_icon (gicon); GLib.Application.get_default ().send_notification (null, notification); I