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