Socket
Socket
Sign inDemoInstall

glasstron

Package Overview
Dependencies
5
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    glasstron

The go-to solution to Electron composition effects


Version published
Weekly downloads
237
increased by37.79%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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 -- check the other project Glasscord to know why).

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

  • Glasscord uses Glasstron to inject composition in any* Electron app.
  • blur-provider 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 AryToNeX

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.

Keywords

FAQs

Last updated on 15 Oct 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc