nix/modules/apps/gui/mpv/default.nix

16 lines
364 B
Nix
Raw Normal View History

2024-09-18 13:44:14 +02:00
{...}: {
2024-09-17 22:19:37 +02:00
home-manager.users.joy.programs.mpv = {
enable = true;
bindings = {
2024-09-18 19:29:17 +02:00
x = "add speed 0.1";
z = "add speed -0.1";
"," = "frame-back-step";
"." = "frame-step";
space = "cycle-values speed 1 2";
# space = "frame-step; cycle-values speed 1 2";
DOWN = "add volume -5";
UP = "add volume 5";
2024-09-17 22:19:37 +02:00
};
};
}