npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wmctrljs

v1.2.9

Published

wmctrl natif code using n-api

Downloads

57

Readme

wmctrljs

Be carefull this package can be use only on a linux X11 machine.

You also need packages like libx11-dev, libxmu-dev

Update your indexes

sudo apt update

Install your unbuntu packages

sudo apt install libx11-dev -y

sudo apt install libxmu-dev -y

Install wmctrljs package

npm install wmctrljs

Description

Wmctrljs is an adaptation of wmctrl command and more, with that library you can easily manage your windows very fastly beacause wmctrls does'nt make a fork of wmctrl process but directly call X11 library using N-API.

To do that wmctrls has access to an addon natif using N-API for scalability between nodejs version.

An implementation of async/IO is available, then it is possible to call each function on a V8 different thread wich will highly improve performance results

Window

wmctrljs provide you an access to alot of properties on your windows many more than wmctrl process. See the prototype as follow.

interface Window {
    win_id:number;
    win_pid:number;
    win_client_machine:string;
    win_class:string;
    win_types:TypeDesc[];
    win_actions:TypeDesc[];
    win_states:TypeDesc[];
    win_name:string;
    win_visible_name:string;
    win_icon_name:string;
    win_visible_icon_name:string;
    win_geometry:Geometry|undefined;

    wm_normal_hints_supplied:number;
    WM_NORMAL_HINTS:XSizeHints|undefined;
    WM_HINTS:XSizeHints|undefined;
    desktop_number:number;
    showing_desktop:number;
    frame_extents:FrameExtents|undefined
}

Types

Window types are describe by this interface.

interface TypeDesc {
    flag:string
    number:number
}

You have access to window's size and positions.

interface Geometry {
    x:number
    y:number
    abs_x:number
    abs_y:number
    width:number
    height:number
}

wmctrljs also provide you XSizeHints propertis based on Xutils.h structure.

interface XSizeHints { //Based on Xutils.h
    flags:number	/* marks which fields in this structure are defined */
    x:number
    y:number		/* obsolete for new window mgrs, but clients */
    width:number
    height:number	/* should set so old wm's don't mess up */
    min_width:number
    min_height:number
    max_width:number
    max_height:number
    width_inc:number
    height_inc:number
    min_aspect:Aspect 
    max_aspect:Aspect
    base_width:number
    base_height:number
    win_gravity:number
}

It is possible to have access to window's frame extents provided by his window manager.

interface FrameExtents {
    left:number,
    right:number,
    top:number,
    bottom:number
}

Screen description is also available.

interface Screen {
    backing_store:number;
    black_pixel:number;
    cmap:number;
    height:number;
    max_maps:number;
    mheight:number;
    min_maps:number;
    mwidth:number;
    ndepths:number;
    root_depth:number;
    root_input_mask:number;
    save_unders:number;
    white_pixel:number;
    width:number
}

Available functions

Get screen's information

function getScreenSync():Screen
function getScreen():Promise<Screen>

Get windows information

function getWindowListSync():Window[]
function getWindowList():Promise<Window[]>

Get Window by id

function getWindowByIdSync():Window
function getWindowById():Promise<Window>

Get the current active window, it is possible no window is active for now then return value can be null

function getActiveWindowSync():Window
function getActiveWindow():Promise<Window>

Get a list of window with the pid provided, if this pid doesn't match with any window a not found exception is throw

function getWindowsByPidSync(win_pid:number):Window[]
function getWindowsByPid(win_pid:number):Promise<Window[]>

Get a list of window with the class provided, it has the same issue as getWindowsByPidSync

function getWindowsByClassNameSync(win_class_name:string):Window[]
function getWindowsByClassName(win_class_name:string):Promise<Window[]>

Active a window by his id, if no window match with this id a window not found exception will be throw.

function activeWindowByIdSync(win_id:number):boolean
function activeWindowById(win_id:number):Promise<boolean>

Active multiple windows by classname or by pid with respective functions

function activeWindowsByClassNameSync(win_class_name:string):boolean
function activeWindowsByClassName(win_class_name:string):Promise<boolean>

function activeWindowsByPidSync(win_pid:number):boolean
function activeWindowsByPid(win_pid:number):Promise<boolean>

It's the same issue for closing window(s)

function closeWindowByIdSync(win_id:number):boolean
function closeWindowById(win_id:number):Promise<boolean>

function closeWindowsByClassNameSync(win_class_name:string):boolean
function closeWindowsByClassName(win_class_name:string):Promise<boolean>

function closeWindowsByPidSync(win_pid:number):boolean
function closeWindowsByPid(win_pid:number):Promise<boolean>

Move and resize your window

function windowMoveResizeSync(win_id:number, win_gravity:number, win_x:number, 
                                    win_y:number, win_width:number, win_height:number):boolean
function windowMoveResize(win_id:number, win_gravity:number, win_x:number, 
                                    win_y:number, win_width:number, win_height:number):Promise<boolean>

You can also move and resize windows with transitions, this is a pure wmctrljs function

function windowMoveResizeTransition(win_id:number, win_gravity:number, win_x:number, 
    win_y:number, win_width:number, win_height:number, await_time:number=1, pad:number=1):Promise<boolean>

Here the await_time is the duration between all window's positions and dimensions, and pad allow you to control the number of step it will have.

Because of the duration of this animation it is available only with an AsyncWorker.

Make some action on window's states

Actions available are add remove and toggle

Properties: modal sticky maximized_vert maximized_horz shaded skip_taskbar skip_pager hidden fullscreen above below

function windowStateSync(win_id:number, action:string, prop1:string, prop2?:string):boolean
function windowState(win_id:number, action:string, prop1:string, prop2?:string):Promise<boolean>

Minimize a window

function windowMinimizeSync(win_id:number):boolean
function windowMinimize(win_id:number):Promise<boolean>

Take off all restriction on the window size, thus you can resize it as you want.

function windowAllowAllSizesSync(win_id:number):boolean
function windowAllowAllSizes(win_id:number):Promise<boolean>

Put a window in first plan

function windowRaiseSync(win_id:number):boolean
function windowRaise(win_id:number):Promise<boolean>