contour-terminal / contour

Modern C++ Terminal Emulator
http://contour-terminal.org/
Apache License 2.0
2.37k stars 102 forks source link

Fixes setting window class (`app_id`) on Wayland #1337

Closed christianparpart closed 9 months ago

christianparpart commented 9 months ago

On Wayland, there's no such thing as WM_CLASS (X11), but a user can use the app_id to identify and group Application windows. However, Qt sets that not via QCoreApplication::setApplicationName but rather uses QCoreApplication::setOrganizationDomain's information in reverse name order.

Closes #1336.