sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit e3f90f00fefcfba65d2387ac69f5e9aec2eb9883
parent f86087d78f25575ddadaa4d3496b34e62b545d2e
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Mon, 16 Jul 2018 08:42:34 +1000

Implement xwayland urgency hint

Diffstat:
Msway/desktop/xwayland.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c @@ -297,6 +297,10 @@ static void handle_commit(struct wl_listener *listener, void *data) { } view_damage_from(view); + + if (view->allow_request_urgent) { + view_set_urgent(view, (bool)xsurface->hints_urgency); + } } static void handle_unmap(struct wl_listener *listener, void *data) {