C'è uno strumento per contare il numero di finestre che ho aperto, incluso su tutti gli spazi?
Sono curioso e troppo pigro per farlo manualmente. :)
Immagino che questo AppleScript dovrebbe fare:
set numberOfWindows to "0"
tell application "System Events"
set allProcesses to application processes
repeat with i from 1 to number of allProcesses
tell process i
set numberOfWindows to (numberOfWindows + (count windows))
end tell
end repeat
end tell
Leggi altre domande sui tag macos spaces window-manager