From 1e98cfc29d6d45dae57655b78cbac1ee9c91e6ee Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Thu, 13 May 2021 00:08:34 -0800 Subject: [PATCH] Add qemu-system- WM_CLASS variants to remotes list Adding a regex for variants of `qemu-system-.*` to remotes list to bypass Kinto mapping. This is working for me. Variants I've seen on my system: `qemu-system-i386` `qemu-system-x86_64` A snap package called Sosumi operates as a QEMU/KVM front end, and caused a problem because it wanted to see Control_L+Alt_L+G to let go of mouse and keyboard. This solves that problem. --- linux/kinto.py | 1 + 1 file changed, 1 insertion(+) diff --git a/linux/kinto.py b/linux/kinto.py index 4739daa..020a320 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -44,6 +44,7 @@ codeStr = "|".join(str(x) for x in mscodes) remotes = [ "Gnome-boxes", "org.remmina.Remmina", + "qemu-system-.*", "Virt-manager", "VirtualBox", "VirtualBox Machine",