Created
April 4, 2025 04:54
-
-
Save aabccd021/2b8693bbe1840b0fba376c7856118ab3 to your computer and use it in GitHub Desktop.
mpv youtube keymap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
programs.mpv.enable = true; | |
programs.mpv.bindings.j = "seek -5"; | |
programs.mpv.bindings.l = "seek 5"; | |
programs.mpv.bindings.k = "cycle pause"; | |
programs.mpv.bindings.UP = "add volume 5"; | |
programs.mpv.bindings.DOWN = "add volume -5"; | |
programs.mpv.bindings.">" = "multiply speed 1.1"; | |
programs.mpv.bindings."<" = "multiply speed 1/1.1"; | |
programs.mpv.bindings.c = "cycle sub"; | |
programs.mpv.bindings."Ctrl+RIGHT" = "add chapter 1"; | |
programs.mpv.bindings."Ctrl+LEFT" = "add chapter -1"; | |
programs.mpv.config.screenshot-directory = config.xdg.userDirs.download; | |
programs.mpv.config.screenshot-format = "png"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment