Mercurial > code > home > repos > racc
view current_window_title_osx.py @ 3:3d7fc94a404a
a few more inputs; daemonize
author | drewp@bigasterisk.com |
---|---|
date | Wed, 08 Mar 2023 10:57:11 -0800 |
parents | |
children |
line wrap: on
line source
from osascript import osascript #https://stackoverflow.com/questions/5292204/macosx-get-foremost-window-title def get_current_window_title(): _, title, _ = osascript(''' tell application "System Events" set frontApp to name of first application process whose frontmost is true end tell tell application frontApp set window_name to name of front window end tell ''') return title