mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-14 20:01:47 +00:00
Merge pull request #745 from lukaszg84/master
Use ; instead of space for play/pause.
This commit is contained in:
@ -12,7 +12,7 @@ module.exports = (win) => {
|
|||||||
// Playback
|
// Playback
|
||||||
previous: () => pressKey(win, "k"),
|
previous: () => pressKey(win, "k"),
|
||||||
next: () => pressKey(win, "j"),
|
next: () => pressKey(win, "j"),
|
||||||
playPause: () => pressKey(win, "space"),
|
playPause: () => pressKey(win, ";"),
|
||||||
like: () => pressKey(win, "+"),
|
like: () => pressKey(win, "+"),
|
||||||
dislike: () => pressKey(win, "_"),
|
dislike: () => pressKey(win, "_"),
|
||||||
go10sBack: () => pressKey(win, "h"),
|
go10sBack: () => pressKey(win, "h"),
|
||||||
|
|||||||
Reference in New Issue
Block a user