1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
//go:build (linux && nodbus) || (freebsd && nodbus) || (netbsd && nodbus) || (openbsd && nodbus) || illumos
// +build linux,nodbus freebsd,nodbus netbsd,nodbus openbsd,nodbus illumos
package beeep
import (
"errors"
"os/exec"
)
// Notify sends desktop notification.
func Notify(title, message, appIcon string) error {
appIcon = pathAbs(appIcon)
cmd := func() error {
send, err := exec.LookPath("sw-notify-send")
if err != nil {
send, err = exec.LookPath("notify-send")
if err != nil {
return err
}
}
c := exec.Command(send, title, message, "-i", appIcon)
return c.Run()
}
knotify := func() error {
send, err := exec.LookPath("kdialog")
if err != nil {
return err
}
c := exec.Command(send, "--title", title, "--passivepopup", message, "10", "--icon", appIcon)
return c.Run()
}
err := cmd()
if err != nil {
e := knotify()
if e != nil {
return errors.New("beeep: " + err.Error() + "; " + e.Error())
}
}
return nil
}
|