From 3ad2c11865a9b4b4d5128553eb3bbcb0c1969133 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 20 Mar 2018 23:57:51 +0200 Subject: Fix macOS notifications not compiling --- notification/notify_darwin.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'notification') diff --git a/notification/notify_darwin.go b/notification/notify_darwin.go index ea64c36..3a4a8c2 100644 --- a/notification/notify_darwin.go +++ b/notification/notify_darwin.go @@ -16,7 +16,11 @@ package notification -import "os/exec" +import ( + "os/exec" + "fmt" + "strings" +) var TerminalNotifierAvailable = false @@ -40,7 +44,7 @@ func Send(title, text string, critical bool) error { } title = strings.Replace(title, `"`, `\"`, -1) text = strings.Replace(text, `"`, `\"`, -1) - notification := fmt.Sprintf("display notification \"%s\" with title \"%s\" subtitle \"%s\"", text, o.AppName, title) + notification := fmt.Sprintf("display notification \"%s\" with title \"gomuks\" subtitle \"%s\"", text, title) return exec.Command("osascript", "-e", notification).Run() } -- cgit v1.2.3