-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Virtual desktop number of a window is not recognized if window is set to appear on all virtual desktops #1
Comments
list VD w. windows Desktop ALL w. filter.ahk
ty, I didn't know this feature existed It is recognized, but since it's on all desktops, there's no desktopNumber so if (desktopOfWindow)
{
code here
} if you remove the filter, you'll see your explorer.exe, AND A LOT of other windows programs that are
I don't want these so I filter THESE out, I created another file if (!desktopOfWindow)
desktopOfWindow:="ALL" and this is the filter I use (to only keep Explorer.EXE): filter:=[{EXE:"mbamtray.exe"}
,{WinTitle:"Microsoft Store", EXE:"ApplicationFrameHost.exe"}
,{EXE:"WinStore.App.exe"}
,{WinTitle:"Settings", EXE:"ApplicationFrameHost.exe"}
,{EXE:"SystemSettings.exe"}
,{EXE:"WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe"}]
filterArrOfObj(arrayOfWindowsInfo,filter) question: do you have easier to understand or shorter filenames for |
Virtual desktop number of a window is not recognized if window is set to appear on all virtual desktops

The text was updated successfully, but these errors were encountered: