aboutsummaryrefslogtreecommitdiff
path: root/lib/notification/notify_linux.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-04-19 11:10:34 +0300
committerTulir Asokan <tulir@maunium.net>2018-04-19 11:10:34 +0300
commitb1dc965a4a5b8a48666749e824d0e480b9d08eed (patch)
tree5409a3cf7e02a4033a29e2ce2aa46f2297503709 /lib/notification/notify_linux.go
parentb17ff318c26aecdcf2c6719ed5b0872be5254c44 (diff)
Gofmt
Diffstat (limited to 'lib/notification/notify_linux.go')
-rw-r--r--lib/notification/notify_linux.go6
1 files changed, 3 insertions, 3 deletions
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"