Skip to content

Instantly share code, notes, and snippets.

@GarboMuffin
Created March 10, 2024 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GarboMuffin/f1bfbf78b5e05d27a9bd30a6e18204a9 to your computer and use it in GitHub Desktop.
Save GarboMuffin/f1bfbf78b5e05d27a9bd30a6e18204a9 to your computer and use it in GitHub Desktop.
const {app, screen} = require('electron');
app.whenReady().then(() => {
const xy = screen.getCursorScreenPoint();
console.log(xy);
app.quit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment