You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I went through the docs and as fas I could gather, We can set up conditions for front most application on macOS. Is it possible to extend this such that this condition only applies to a specific window title?
I only want to remap soem keys when Spelling and Grammar dialog is active and that unfortunately doesn't show up as a separate application/bundle when I try to see the "Frontmost Applications" events in events viewer. However, it does show up as a different window/process title. You can use this zsh code to see a log of what I mean by window/process title:
whiletrue;do
focused=$(osascript -e ' tell application "System Events" set frontApp to name of first application process whose frontmost is true try set windowTitle to name of front window of application process frontApp on error set windowTitle to "(No active window)" end try return frontApp & ": " & windowTitle end tell')echo"$(date): $focused"
sleep 1
done
The text was updated successfully, but these errors were encountered:
I went through the docs and as fas I could gather, We can set up conditions for front most application on macOS. Is it possible to extend this such that this condition only applies to a specific window title?
I only want to remap soem keys when Spelling and Grammar dialog is active and that unfortunately doesn't show up as a separate application/bundle when I try to see the "Frontmost Applications" events in events viewer. However, it does show up as a different window/process title. You can use this zsh code to see a log of what I mean by window/process title:
The text was updated successfully, but these errors were encountered: