Merge pull request #745 from lukaszg84/master

Use ; instead of space for play/pause.
This commit is contained in:
th-ch
2022-06-25 21:22:50 +02:00
committed by GitHub

View File

@ -12,7 +12,7 @@ module.exports = (win) => {
// Playback
previous: () => pressKey(win, "k"),
next: () => pressKey(win, "j"),
playPause: () => pressKey(win, "space"),
playPause: () => pressKey(win, ";"),
like: () => pressKey(win, "+"),
dislike: () => pressKey(win, "_"),
go10sBack: () => pressKey(win, "h"),