Skip to content

Instantly share code, notes, and snippets.

@TheCommieAxolotl
Created June 6, 2024 11:07
Show Gist options
  • Save TheCommieAxolotl/3b91b79f80278e3e18f5d8c0e0456245 to your computer and use it in GitHub Desktop.
Save TheCommieAxolotl/3b91b79f80278e3e18f5d8c0e0456245 to your computer and use it in GitHub Desktop.
Electron Vibrancy causing unresponsive app
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
We are using Node.js <span id="node-version"></span>,
Chromium <span id="chrome-version"></span>,
and Electron <span id="electron-version"></span>.
<script src="./renderer.js"></script>
</body>
</html>
const { app, BrowserWindow } = require('electron')
const path = require('node:path')
function createWindow () {
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
show: false,
autoHideMenuBar: true,
titleBarStyle: 'hiddenInset',
// when this is commented out, it behaves as expected
vibrancy: 'sidebar',
webPreferences: {
preload: path.join(__dirname, 'preload.js')
}
})
mainWindow.on('ready-to-show', () => {
mainWindow.show();
});
mainWindow.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})
{
"name": "abusive-quilt-market-0557t",
"productName": "abusive-quilt-market-0557t",
"description": "My Electron application description",
"keywords": [],
"main": "./main.js",
"version": "1.0.0",
"author": "dylan",
"scripts": {
"start": "electron ."
},
"dependencies": {},
"devDependencies": {
"electron": "31.0.0-beta.8"
}
}
window.addEventListener('DOMContentLoaded', () => {
const replaceText = (selector, text) => {
const element = document.getElementById(selector)
if (element) element.innerText = text
}
for (const type of ['chrome', 'node', 'electron']) {
replaceText(`${type}-version`, process.versions[type])
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment