From 6fb3552d70619876facfc9a36a65355e1d51478d Mon Sep 17 00:00:00 2001 From: Joel Bethke Date: Wed, 16 Oct 2019 19:47:43 -0500 Subject: [PATCH] win-capture: Add additional exe to window capture blacklist These are additional internal windows processes that should not be listed in the window capture dropdown. --- plugins/win-capture/window-helpers.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plugins/win-capture/window-helpers.c b/plugins/win-capture/window-helpers.c index 0044226f1..8f19ee48b 100644 --- a/plugins/win-capture/window-helpers.c +++ b/plugins/win-capture/window-helpers.c @@ -128,12 +128,23 @@ void get_window_class(struct dstr *class, HWND hwnd) /* not capturable or internal windows */ static const char *internal_microsoft_exes[] = { + "startmenuexperiencehost", "applicationframehost", + "peopleexperiencehost", "shellexperiencehost", + "microsoft.notes", "windowsinternal", + "systemsettings", + "textinputhost", "winstore.app", + "searchapp", + "video.ui", "searchui", "lockapp", + "cortana", + "gamebar", + "tabtip", + "time", NULL, };