From 14021fbf6781b63de1b7c3885c2629c7940665ec Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Wed, 12 May 2021 16:26:06 -0800 Subject: [PATCH] Add Virt-manager to remotes WM_CLASS list, alphabetize list Just adding "Virt-manager" WM_CLASS and re-ordering `remotes` alphabetically to conform to other lists. --- linux/kinto.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/linux/kinto.py b/linux/kinto.py index 0ebf3a6..4739daa 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -42,11 +42,12 @@ codeStr = "|".join(str(x) for x in mscodes) # Ideally we'd only exclude the client window, # but that may not be easily done. remotes = [ - "org.remmina.Remmina", - "xfreerdp", - "VirtualBox Machine", - "VirtualBox", "Gnome-boxes", + "org.remmina.Remmina", + "Virt-manager", + "VirtualBox", + "VirtualBox Machine", + "xfreerdp", ] remotes = [client.casefold() for client in remotes]