Mpv + keybindings

This commit is contained in:
Filippo Berto 2022-08-14 19:58:51 +02:00
parent c6755a6692
commit 6c3e229ad6
3 changed files with 11 additions and 2 deletions

9
hm_modules/mpv.nix Normal file
View file

@ -0,0 +1,9 @@
{
programs.mpv = {
enable = true;
bindings = {
"Ctrl+Right" = "playlist-next";
"Ctrl+Left" = "playlist-prev";
};
};
}