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

@cainier/glasstron

v0.2.1

Published

The go-to solution to Electron composition effects

Downloads

22

Readme

Forked from NyaomiDEV/Glasstron

This project is EOL. Please use other equivalent modules for your newer apps.

Glasstron

A simple and reliable API to achieve blur and transparency across platforms (Windows/Linux/MacOS), so you don't have to panic with Electron bugs and messy code! Plus, it's really simple!

npm version indev version ko-fi patreon paypal

Quickstart

$ npm install glasstron
- OR -
$ yarn add glasstron
const glasstron = require('glasstron');
const electron  = require('electron');
electron.app.commandLine.appendSwitch("enable-transparent-visuals");
electron.app.on('ready', () => {
    setTimeout(
        spawnWindow,
        process.platform == "linux" ? 1000 : 0
        // Electron has a bug on linux where it
        // won't initialize properly when using
        // transparency. To work around that, it
        // is necessary to delay the window
        // spawn function.
    );
});

function spawnWindow () {
    win          = new glasstron.BrowserWindow({
        width : 800,
        height: 600,
        // ...
    });
    win.blurType = "acrylic";
    //              ^~~~~~~
    // Windows 10 1803+; for older versions you
    // might want to use 'blurbehind'
    win.setBlur(true);
    // ...
    return win;
}

// ...

NOTICE for projects using Webpack and similar: Glasstron uses __dirname internally, so you have to define it as an external module, or else it won't work on Windows.

Why Glasstron?

The problem

Let's face it: achieving composition effects on Electron is painful. For reference, here's quick summary of the amount of problems that arise when trying to blur the background of a window while keeping cross-compatibility.

  • On Windows: There are plenty of Node bindings, but this means having to recompile them everytime a new Electron version comes out (and there's a chance you relied on unmaintained bindings, so you'll have to switch to a new project). Plus, you lose Aero Snap features if you aren't careful enough.
  • On macOS: Achieving transparency and vibrancy on a window means that the backgroundColor window option must be set to transparent. Then, you must not call win.setBackgroundColor() or else it all breaks. (Tested on Electron 7.1.11 -- I hope this changed with more recent versions of it)
  • On Linux: there's literally nothing to request blurriness. No bindings at all. Nothing.

The solution

Glasstron takes care of those problems and it also aims to support composition effects on Linux. Its ease of use is a distinct feature, so it can be adopted in both new and running projects. It supports Electron 7.1+ without any problem ( that's a bold claim, if I am wrong please open an issue).

Design and features

Glasstron provides a custom version of Electron's BrowserWindow export that's capable to deal with the common problems discussed earlier on its own. This means that it's simple to adopt and it doesn't break existing code as every call to broken methods is wrapped so nothing bad happens.

It also replaces the functionality of win.setBackgroundColor(): since there's no way to set a background color without breaking vibrancy materials on macOS, it will set the background color as injected CSS on the :root CSS selector. It can be overridden by CSS stylesheets, so be careful! (this was intended).

Note that Glasstron cannot do all the hard work (as with it prototype pollution will occur). Please look inside src/hacks.js to see common problems Glasstron used to solve automagically up until version 0.0.3.

I want to contribute to this madness!

Did you find a bug? File it in the issues section! Do you know how to fix stuff? Make a pull request! Or perhaps you want to send me a hug and a coffee? You can do so here!

Awesome applications using Glasstron

Projects related to Glasstron

  • Blur my Shell is used by Glasstron to request blurring of windows to the GNOME Shell.

License

Glasstron is licensed under the Apache 2.0 License

Copyright 2020-2022 Naomi Calabretta

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

	http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.