Skip to content

Commit

Permalink
⚡ Update filtered window class
Browse files Browse the repository at this point in the history
  • Loading branch information
john-walks-slow committed Mar 7, 2024
1 parent e8b24a3 commit 532d903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/setupWorkspace.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ setupWorkspace(workspaceConfig) {
global workspaces
DetectHiddenWindows(false)
workspaces[currentWorkspace] := WinGetList().Filter((wnd) =>
["Shell_TrayWnd", "IME", "NarratorHelperWindow", "tooltips_class32", "Progman", "MSCTFIME UI"].IndexOf(WinGetClass(wnd)) == 0)
["TopLevelWindowForOverflowXamlIsland", "SysShadow", "Shell_TrayWnd", "IME", "NarratorHelperWindow", "tooltips_class32", "Progman", "MSCTFIME UI"].IndexOf(WinGetClass(wnd)) == 0)
DetectHiddenWindows(true)
for (wnd in workspaces[currentWorkspace]) {
; OutputDebug(wnd " | " WinGetClass(wnd) " | " WinGetTitle(wnd) "`n")
OutputDebug(wnd " | " WinGetClass(wnd) " | " WinGetTitle(wnd) "`n")
NewThread("try{`nWinHide(" wnd ")`n}")
addWndHandler(wnd)
}
Expand Down

0 comments on commit 532d903

Please sign in to comment.