fix acyrlic
This commit is contained in:
parent
c51d82271e
commit
cba4a71b87
2 changed files with 8 additions and 2 deletions
1
index.js
1
index.js
|
@ -133,6 +133,7 @@ if (process.platform === "linux") {
|
||||||
app.commandLine.appendSwitch('high-dpi-support', "1")
|
app.commandLine.appendSwitch('high-dpi-support', "1")
|
||||||
app.commandLine.appendSwitch('force-device-scale-factor', "1")
|
app.commandLine.appendSwitch('force-device-scale-factor', "1")
|
||||||
app.commandLine.appendSwitch('disable-pinch');
|
app.commandLine.appendSwitch('disable-pinch');
|
||||||
|
app.commandLine.appendSwitch('no-sandbox');
|
||||||
// app.commandLine.appendSwitch('js-flags', '--max-old-space-size=1024')
|
// app.commandLine.appendSwitch('js-flags', '--max-old-space-size=1024')
|
||||||
|
|
||||||
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -71,11 +71,16 @@ const CiderBase = {
|
||||||
if (process.platform === "darwin" || process.platform === "linux") {
|
if (process.platform === "darwin" || process.platform === "linux") {
|
||||||
win = new BrowserWindow(options)
|
win = new BrowserWindow(options)
|
||||||
} else {
|
} else {
|
||||||
|
// i don't know why but we have to do this for acrylic to work properly
|
||||||
if (app.cfg.get("visual.window_transparency") !== "disabled") {
|
if (app.cfg.get("visual.window_transparency") !== "disabled") {
|
||||||
const { BrowserWindow } = require("electron-acrylic-window");
|
const { BrowserWindow } = require("electron-acrylic-window");
|
||||||
}
|
|
||||||
win = new BrowserWindow(options)
|
win = new BrowserWindow(options)
|
||||||
win.setVibrancy("dark")
|
win.setVibrancy("dark")
|
||||||
|
} else {
|
||||||
|
win = new BrowserWindow(options)
|
||||||
|
win.setVibrancy("dark")
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// intercept "https://js-cdn.music.apple.com/hls.js/2.141.0/hls.js/hls.js" and redirect to local file "./apple-hls.js" instead
|
// intercept "https://js-cdn.music.apple.com/hls.js/2.141.0/hls.js/hls.js" and redirect to local file "./apple-hls.js" instead
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue