active-windows

0.1.14 • Public • Published

Active Window

Node C++ N-API module to get information on the currently selected window and the user idle time on Linux, MacOS and Windows.

Currently only supports Windows and Linux / Xorg.

Work in progress. Not on every platform all information are supported.

Building / Installation

npm install

Usage

const activeWindows = require('active-windows');
 
console.log(activeWindows.getActiveWindow());

See sample.js for more information.

Return-Value

{
  // Operating system (linux | windows | macos)
  os: 'linux',
  // Process name (chromium.exe on windows)
  windowClass: 'chromium',
  // Blog | bytee.net
  windowName: 'Blog | bytee.net - Chromium',
  // Desktop on which the window is displayed (Linux only)
  windowDesktop: '2',
  // Window Type (Linux only)
  windowType: '340',
  // Process ID of the window
  windowPid: '34218',
  // Idle Time in seconds
  idleTime: '42',
}

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i active-windows

    Homepage

    bytee.net

    Weekly Downloads

    4

    Version

    0.1.14

    License

    MIT

    Unpacked Size

    14.2 kB

    Total Files

    16

    Last publish

    Collaborators

    • bytee