diff --git a/src/events/Windows.cpp b/src/events/Windows.cpp index 716c5ee1..67425de4 100644 --- a/src/events/Windows.cpp +++ b/src/events/Windows.cpp @@ -276,6 +276,9 @@ void Events::listener_setTitleWindow(void* owner, void* data) { PWINDOW->m_szTitle = g_pXWaylandManager->getTitle(PWINDOW); + if (PWINDOW == g_pCompositor->m_pLastWindow) // if it's the active, let's post an event to update others + g_pEventManager->postEvent(SHyprIPCEvent("activewindow", PWINDOW->m_szTitle)); + Debug::log(LOG, "Window %x set title to %s", PWINDOW, PWINDOW->m_szTitle.c_str()); }