1.0.1 • Published 5 years ago

lemonbar.js v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

lemonbar.js

A wrapper around Lemonbar for Node.js written in TypeScript.

Getting started

Obtain the lemonbar.js package from NPM:

yarn add lemonbar.js

Stick it in your project, below is an example. More docs are here

Example

import LemonbarJS from "lemonbar.js";

async function start() {
    // Pretty basic example:
    const bar = await LemonbarJS.make({
        redirect_stdout: true,
        clickableAreas: 5,
        docking: {
            bottom: true,
            force: false
        },
    });
    bar.write("Hello WORLD this is lemonbar.js");
}
start();