From 7994c289aae7662fee9b86f9424d230c7b612b3d Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Wed, 21 Mar 2018 00:21:16 +0200 Subject: Refactor some things and format everything --- notification/notify_linux.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'notification/notify_linux.go') diff --git a/notification/notify_linux.go b/notification/notify_linux.go index f48e208..25ab405 100644 --- a/notification/notify_linux.go +++ b/notification/notify_linux.go @@ -23,9 +23,9 @@ func Send(title, text string, critical bool) error { if critical { args = append(args, "-p", "critical") } -// if iconPath { -// args = append(args, "-i", iconPath) -// } +// if iconPath { +// args = append(args, "-i", iconPath) +// } args = append(args, title, text) return exec.Command("notify-send", args...).Run() } -- cgit v1.2.3