diff options
author | Tulir Asokan <tulir@maunium.net> | 2018-04-19 11:10:34 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2018-04-19 11:10:34 +0300 |
commit | b1dc965a4a5b8a48666749e824d0e480b9d08eed (patch) | |
tree | 5409a3cf7e02a4033a29e2ce2aa46f2297503709 /lib/notification | |
parent | b17ff318c26aecdcf2c6719ed5b0872be5254c44 (diff) |
Gofmt
Diffstat (limited to 'lib/notification')
-rw-r--r-- | lib/notification/notify_darwin.go | 6 | ||||
-rw-r--r-- | lib/notification/notify_linux.go | 6 | ||||
-rw-r--r-- | lib/notification/notify_windows.go | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/notification/notify_darwin.go b/lib/notification/notify_darwin.go index 1e09ef8..0a7e49b 100644 --- a/lib/notification/notify_darwin.go +++ b/lib/notification/notify_darwin.go @@ -42,9 +42,9 @@ func Send(title, text string, critical, sound bool) error { if sound { args = append(args, "-sound", "default") } -// if len(iconPath) > 0 { -// args = append(args, "-appIcon", iconPath) -// } + // if len(iconPath) > 0 { + // args = append(args, "-appIcon", iconPath) + // } return exec.Command("terminal-notifier", args...).Run() } title = strings.Replace(title, `"`, `\"`, -1) diff --git a/lib/notification/notify_linux.go b/lib/notification/notify_linux.go index f8ecdaf..11a37a7 100644 --- a/lib/notification/notify_linux.go +++ b/lib/notification/notify_linux.go @@ -23,9 +23,9 @@ func Send(title, text string, critical, sound bool) error { if critical { args = append(args, "-u", "critical") } -// if iconPath { -// args = append(args, "-i", iconPath) -// } + // if iconPath { + // args = append(args, "-i", iconPath) + // } args = append(args, title, text) if sound { soundName := "message-new-instant" diff --git a/lib/notification/notify_windows.go b/lib/notification/notify_windows.go index d927ee1..999380a 100644 --- a/lib/notification/notify_windows.go +++ b/lib/notification/notify_windows.go @@ -25,7 +25,7 @@ func Send(title, text string, critical, sound bool) error { Message: message, Audio: toast.Silent, Duration: toast.Short, -// Icon: ..., + // Icon: ..., } if sound { notification.Audio = toast.IM |