feat: run prettier

This commit is contained in:
JellyBrick
2023-11-30 11:59:27 +09:00
parent 44c42310f1
commit a3104fda4b
116 changed files with 2928 additions and 1254 deletions

View File

@ -37,14 +37,18 @@ export default createPlugin({
click() {
previous();
},
}, {
},
{
tooltip: 'Play/Pause',
// Update icon based on play state
icon: nativeImage.createFromPath(songInfo.isPaused ? get('play') : get('pause')),
icon: nativeImage.createFromPath(
songInfo.isPaused ? get('play') : get('pause'),
),
click() {
playPause();
},
}, {
},
{
tooltip: 'Next',
icon: nativeImage.createFromPath(get('next')),
click() {
@ -81,5 +85,5 @@ export default createPlugin({
window.on('show', () => {
setThumbar(currentSongInfo);
});
}
},
});