mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
const { injectCSS } = require("../utils");
|
|
const path = require("path");
|
|
|
|
module.exports = (win, options) => {
|
|
if (options.forceHide) {
|
|
injectCSS(win.webContents, path.join(__dirname, "force-hide.css"));
|
|
} else {
|
|
injectCSS(win.webContents, path.join(__dirname, "button-switcher.css"));
|
|
}
|
|
};
|