Backport album color theme plugin

This commit is contained in:
TC
2023-10-06 20:20:03 +02:00
parent 0229ccaa1e
commit 063ba1b6c7
6 changed files with 456 additions and 16 deletions

View File

@ -0,0 +1,9 @@
import { join } from 'node:path';
import { BrowserWindow } from 'electron';
import { injectCSS } from '../utils';
export default (win: BrowserWindow) => {
injectCSS(win.webContents, join(__dirname, 'style.css'));
};