1package ansi
2
3// Notify sends a desktop notification using iTerm's OSC 9.
4//
5// OSC 9 ; Mc ST
6// OSC 9 ; Mc BEL
7//
8// Where Mc is the notification body.
9//
10// See: https://iterm2.com/documentation-escape-codes.html
11func Notify(s string) string {
12 return "\x1b]9;" + s + "\x07"
13}