mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import path from 'node:path';
|
|
|
|
const iconPath = path.join(__dirname, '..', 'assets', 'youtube-music-tray.png');
|
|
|
|
const promptOptions = {
|
|
customStylesheet: 'dark',
|
|
icon: iconPath,
|
|
};
|
|
|
|
export default () => promptOptions;
|