From cc63a197c60bb77c2d020b525bae13d701ccf5a4 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 26 Mar 2019 22:09:10 +0200 Subject: Change more things --- lib/notification/notify_linux.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/notification') diff --git a/lib/notification/notify_linux.go b/lib/notification/notify_linux.go index 803f80d..2edbb54 100644 --- a/lib/notification/notify_linux.go +++ b/lib/notification/notify_linux.go @@ -20,8 +20,8 @@ import "os/exec" func Send(title, text string, critical, sound bool) error { args := []string{"-a", "gomuks"} - if critical { - args = append(args, "-u", "critical") + if !critical { + args = append(args, "-u", "low") } // if iconPath { // args = append(args, "-i", iconPath) -- cgit v1.2.3