1
- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
1
+ #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
2
2
#SingleInstance , force
3
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
4
- SetWorkingDir %A_ScriptDir % ; Ensures a consistent starting directory.
3
+ SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
4
+ SetWorkingDir %A_ScriptDir % ; Ensures a consistent starting directory.
5
5
SetBatchLines , - 1
6
6
#KeyHistory 0
7
7
ListLines Off
@@ -22,31 +22,46 @@ Loop %windows%
22
22
IfEqual , False , % VD_isValidWindow(id ), continue
23
23
ahk_idId := " ahk_id " id
24
24
desktopOfWindow:=VD_getDesktopOfWindow(ahk_idId)
25
- if (desktopOfWindow)
26
- {
27
- whichDesktop:=" Desktop " desktopOfWindow
28
25
29
- ; useful
30
- WinGetTitle , OutputTitle, %ahk_idId%
31
- WinGetClass , OutputClass, %ahk_idId%
32
- WinGet , OutputEXE, ProcessName , %ahk_idId%
33
- useFulStr:=" `nWinTitle: " OutputTitle " `nclass: " OutputClass " `nEXE: " OutputEXE
26
+ if (! desktopOfWindow)
27
+ desktopOfWindow:=" ALL"
34
28
35
- ; not that useful
36
- WinGet , OutputFULLPATH, ProcessPath, %ahk_idId%
37
- WinGet , OutputPID, PID, %ahk_idId%
29
+ whichDesktop:=" Desktop " desktopOfWindow
38
30
39
- notThatUseFulStr:=" `n`nFULLPATH: " OutputFULLPATH " `nPID: " OutputPID " `nID: " id
40
- WinGet , OutputVar, ProcessPath, A
31
+ ; useful
32
+ WinGetTitle , OutputTitle, %ahk_idId%
33
+ WinGetClass , OutputClass, %ahk_idId%
34
+ WinGet , OutputEXE, ProcessName , %ahk_idId%
35
+ useFulStr:=" `nWinTitle: " OutputTitle " `nclass: " OutputClass " `nEXE: " OutputEXE
41
36
42
- arrayOfWindowsInfo.Push({desktopNum:desktopOfWindow, str:whichDesktop useFulStr notThatUseFulStr})
43
- }
37
+ ; not that useful
38
+ WinGet , OutputFULLPATH, ProcessPath, %ahk_idId%
39
+ WinGet , OutputPID, PID, %ahk_idId%
40
+
41
+ notThatUseFulStr:=" `n`nFULLPATH: " OutputFULLPATH " `nPID: " OutputPID " `nID: " id
42
+ WinGet , OutputVar, ProcessPath, A
43
+
44
+ arrayOfWindowsInfo.Push({desktopNum:desktopOfWindow
45
+ , str:whichDesktop useFulStr notThatUseFulStr
46
+ , WinTitle: OutputTitle
47
+ , class : OutputClass
48
+ , EXE: OutputEXE})
44
49
}
45
50
DetectHiddenWindows , off
46
51
47
- ; below is just to print it
52
+ ; filter it
53
+ filter:=[{EXE:" mbamtray.exe" }
54
+ ,{WinTitle:" Microsoft Store" , EXE:" ApplicationFrameHost.exe" }
55
+ ,{EXE:" WinStore.App.exe" }
56
+ ,{WinTitle:" Settings" , EXE:" ApplicationFrameHost.exe" }
57
+ ,{EXE:" SystemSettings.exe" }
58
+ ,{EXE:" WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe" }]
59
+
60
+ filterArrOfObj(arrayOfWindowsInfo,filter)
61
+
48
62
arrayOfWindowsInfo:=sortArrByKey(arrayOfWindowsInfo," desktopNum" )
49
63
64
+ ; below is just to print it
50
65
ArrayStreamArray:=[]
51
66
for k, v in arrayOfWindowsInfo {
52
67
ArrayStreamArray.push(v[" str" ])
@@ -55,7 +70,6 @@ for k, v in arrayOfWindowsInfo {
55
70
streamArray(ArrayStreamArray,1100 ,200 )
56
71
return
57
72
58
-
59
73
streamArray(Byref arr,Byref width,Byref height)
60
74
{
61
75
global ArrayStreamArray, ArrayStreamIndex, ArrayStreamGuiId, ArrayStreamTextId, ArrayStreamIndexTextId, ArrayStreamLength
@@ -111,7 +125,6 @@ ArrayStreamGoRight:
111
125
return
112
126
#if
113
127
114
-
115
128
sortArrByKey (ar,byref key ) {
116
129
str=
117
130
for k,v in ar {
@@ -134,7 +147,30 @@ sortArrByKey(ar,byref key) {
134
147
num:=SubStr (str, plusPos + 1 , barPos - plusPos - 1 )
135
148
finalAr.Push(ar[num])
136
149
}
137
- return finalAr
150
+ return finalAr
151
+ }
152
+
153
+ filterArrOfObj(arr, filter)
154
+ {
155
+ ; reverse iterate to remove
156
+ i := arr.Length() + 1
157
+ while (-- i)
158
+ {
159
+ v:=arr[i]
160
+ reverseI := length-
161
+
162
+ for n, obj in filter {
163
+ for key, value in obj {
164
+
165
+ if (value! =v[key])
166
+ continue 2
167
+
168
+ }
169
+ ; if respects the filter, all values match values of filter
170
+ arr.remove (i)
171
+ continue
172
+ }
173
+ }
138
174
}
139
175
140
176
f3 ::Exitapp
0 commit comments