aboutsummaryrefslogtreecommitdiff
path: root/lib/notification/notify_linux.go
diff options
context:
space:
mode:
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"