I need AppleScript that, when lunched from command line, will return three things:
- current active application name; ex. "Google Chrome", "Safari", "Steam", "iTunes", "Atom" ect.
- current active application title, if there is one
- if current active application is a browser, I want the current active tab URL
examples:
- Google Chrome; AppleScript: How to get URL of Safari tab which failed to load? - Stack Overflow; https://stackoverflow.com/
- iTunes; iTunes
- iTerm2; 1. node test.js (sleep)
- Safari, GitHub - rails/rails: Ruby on Rails; https://github.com/rails/rails
I know there are some similar questions w. answers here on stackoverflow, but I am not able to pice them together to make all of this work. Would appreciate help much.
I wanted to make a script that does exactly this running in the background so that I can better keep track of my time. Here's what I came up with:
tell application "System Events"
set frontmostProcess to first process where it is frontmost
set appName to name of frontmostProcess
end tell
tell application appName
set windowName to the name of the front window
end tell
if appName is equal to "Safari" then
tell application "Safari"
set theURL to the URL of the current tab of the front window
end tell
else if appName is equal to "Google Chrome" then
tell application "Google Chrome"
set theURL to the URL of the active tab of the front window
end tell
else
set theURL to ""
end if
return (appName, windowName, theURL)
Credit goes to https://apple.stackexchange.com/a/171738 for getting me on the right track.
来源:https://stackoverflow.com/questions/48713135/applescript-that-reads-active-application-name-title-and-url