Skip to content

Commit

Permalink
Automated app-rules upgrades (#1006)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
dalyIsaac and github-actions authored Sep 2, 2024
1 parent e200e8b commit 34506b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Whim/Filter/DefaultFilteredWindowsKomorebi.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ public static void LoadWindowsIgnoredByKomorebi(IFilterManager filterManager)
// Amazon Chime
filterManager.Add((window) => window.Title.EndsWith("Meeting Controls"));

// AutoDesk AutoCAD Suite
filterManager.Add((window) => window.WindowClass.Contains("Afx:") && window.ProcessFileName.Equals("acad.exe"));
filterManager.Add((window) => window.WindowClass.StartsWith("HwndWrapper[DefaultDomain") && window.ProcessFileName.Equals("acad.exe"));

// AutoHotkey
filterManager.Add((window) => window.Title.StartsWith("Window Spy"));
filterManager.AddProcessFileNameFilter("AutoHotkeyUX.exe");
Expand Down

0 comments on commit 34506b7

Please sign in to comment.