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

16 lines
348 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 = {
x = "add speed 0.1";
z = "add speed -0.1";
"," = "frame-back-step";
"." = "frame-step";
2024-09-18 13:44:14 +02:00
space = "cycle-values speed 1 2";
# space = "frame-step; cycle-values speed 1 2";
2024-09-17 22:19:37 +02:00
DOWN = "add volume -5";
UP = "add volume 5";
};
};
}