In Fedora, bash is configured to display a desktop notification when a command finishes (and the terminal is not focused). weston-terminal complains about it; let's silence it.
Signed-off-by: Dima Ryazanov <[email protected]> --- clients/terminal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clients/terminal.c b/clients/terminal.c index 6257cb7..64768eb 100644 --- a/clients/terminal.c +++ b/clients/terminal.c @@ -1297,6 +1297,8 @@ handle_osc(struct terminal *terminal) break; case 7: /* shell cwd as uri */ break; + case 777: /* Desktop notifications */ + break; default: fprintf(stderr, "Unknown OSC escape code %d, text %s\n", code, p); -- 2.9.3 _______________________________________________ wayland-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/wayland-devel
