blob: 2a8cf06a9d5f7786e841d73271b39bc6af58f549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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)
}
|