tabby-osc-notify
v1.1.0
Published
This is a [Tabby](https://github.com/Eugeny/tabby) plugin. It creates a system notification when certain OSC escape code sequences are printed. The following OSC escape codes are supported:
Downloads
205
Readme
osc-notify
This is a Tabby plugin. It creates a system notification when certain OSC escape code sequences are printed. The following OSC escape codes are supported:
OSC 9 ; [message] ST
OSC 777 ; notify ; [title] ; [body] STExample commands
# creates a notification that says 'hello'
printf "\033]9;hello\a"
# for tmux, use the passthrough escape sequence. allow-passthrough should be
# enabled
printf "\033Ptmux;\033\x1b]9;hello\x07\033\\"
# creates a notification titled 'Build' with body 'Done'
printf "\033]777;notify;Build;Done\a"