abra/vendor/github.com/muesli/termenv/notification.go
2024-08-04 11:06:58 +02:00

12 lines
295 B
Go

package termenv
// Notify triggers a notification using OSC777.
func Notify(title, body string) {
output.Notify(title, body)
}
// Notify triggers a notification using OSC777.
func (o *Output) Notify(title, body string) {
_, _ = o.WriteString(OSC + "777;notify;" + title + ";" + body + ST)
}