@johnlindquist/mac-frontmost
v1.0.7
Published
Access the macOS frontmost from Node.js
Downloads
86
Readme
@johnlindquist/mac-frontmost
Get the frontmost application on macOS
import { getFrontmostApp } from "@johnlindquist/mac-frontmost"
console.log(getFrontmostApp())
/* Example return type:
{
localizedName: 'iTerm2',
bundleIdentifier: 'com.googlecode.iterm2',
bundleURLPath: '/Applications/iTerm.app',
executableURLPath: '/Applications/iTerm.app/Contents/MacOS/iTerm2',
isFinishedLaunching: true,
processIdentifier: 92918,
x: 45,
y: 72,
width: 885,
height: 849
}
*/