aboutsummaryrefslogtreecommitdiff
path: root/notify_x11.go
blob: f698be16b024010dccd847a6b843f07f6154030e (plain)
1
2
3
4
5
6
7
8
9
// +build !darwin

package main

import "os/exec"

func notify(s string) error {
	return exec.Command("xmessage", "-center", "-timeout", "5", s).Run()
}