From 87dae12d9bb79ba77a1c9608598b74b1909f5810 Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Mon, 12 Apr 2021 23:40:36 -0800 Subject: [PATCH] Add GNOME Boxes WM_CLASS for Linux, and a comma Note: I'm trying to consistently leave a comma after the last item in each vertically formatted python list, so that when someone with less python knowledge wants to add something to the list and does it the "lazy way" by just copying the last line, pasting it on the end and editing it to add a new item, they won't cause the "missing comma" python error too easily. Having a comma on the very end of the list with no element after it doesn't seem to cause any harm or python errors. And you can copy/paste the last item as many times as you want without getting into trouble. --- linux/kinto.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux/kinto.py b/linux/kinto.py index 1091854..1eb64a1 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -41,7 +41,8 @@ remotes = [ "org.remmina.Remmina", "xfreerdp", "VirtualBox Machine", - "VirtualBox" + "VirtualBox", + "Gnome-boxes", ] remotes = [client.casefold() for client in remotes]