Add Deepin Browser to browsers and chromes WM_CLASS lists

Adding the WM_CLASS for Deepin Browser (org.deepin.browser) to the general browsers and the Chromes WM_CLASS lists. Browser is based on Chromium.
This commit is contained in:
RedBearAK
2022-05-19 03:22:23 -08:00
committed by GitHub
parent 35981fc77f
commit d9817d406e

View File

@@ -75,6 +75,7 @@ browsers = [
"Google-chrome",
"microsoft-edge",
"microsoft-edge-dev",
"org.deepin.browser",
]
browsers = [browser.casefold() for browser in browsers]
browserStr = "|".join(str('^'+x+'$') for x in browsers)
@@ -85,6 +86,7 @@ chromes = [
"Google-chrome",
"microsoft-edge",
"microsoft-edge-dev",
"org.deepin.browser",
]
chromes = [chrome.casefold() for chrome in chromes]
chromeStr = "|".join(str('^'+x+'$') for x in chromes)