aboutsummaryrefslogtreecommitdiff
path: root/notify_x11.go
diff options
context:
space:
mode:
Diffstat (limited to 'notify_x11.go')
-rw-r--r--notify_x11.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/notify_x11.go b/notify_x11.go
deleted file mode 100644
index f698be1..0000000
--- a/notify_x11.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// +build !darwin
-
-package main
-
-import "os/exec"
-
-func notify(s string) error {
- return exec.Command("xmessage", "-center", "-timeout", "5", s).Run()
-}