Don't set urgency hint on new messages on GNOME
This commit is contained in:
parent
fa43581ad3
commit
d429c30432
|
@ -82,7 +82,12 @@ public class Notifications : Object {
|
||||||
} catch (Error e) { }
|
} catch (Error e) { }
|
||||||
window.get_application().send_notification(conversation.id.to_string(), notifications[conversation]);
|
window.get_application().send_notification(conversation.id.to_string(), notifications[conversation]);
|
||||||
active_conversation_ids.add(conversation.id.to_string());
|
active_conversation_ids.add(conversation.id.to_string());
|
||||||
window.urgency_hint = true;
|
|
||||||
|
// Don't set urgency hint in GNOME, produces "Window is active" notification
|
||||||
|
var desktop_env = Environment.get_variable("XDG_CURRENT_DESKTOP");
|
||||||
|
if (desktop_env == null || !desktop_env.down().contains("gnome")) {
|
||||||
|
window.urgency_hint = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void notify_subscription_request(Conversation conversation) {
|
private async void notify_subscription_request(Conversation conversation) {
|
||||||
|
|
Loading…
Reference in a new issue