This commit is contained in:
joygnu 2024-09-18 19:29:17 +02:00
parent 6141819a26
commit a04ed72df5
3 changed files with 13 additions and 14 deletions

View file

@ -24,4 +24,3 @@
]; ];
}; };
} }

View file

@ -2,14 +2,14 @@
home-manager.users.joy.programs.mpv = { home-manager.users.joy.programs.mpv = {
enable = true; enable = true;
bindings = { bindings = {
x = "add speed 0.1"; x = "add speed 0.1";
z = "add speed -0.1"; z = "add speed -0.1";
"," = "frame-back-step"; "," = "frame-back-step";
"." = "frame-step"; "." = "frame-step";
space = "cycle-values speed 1 2"; space = "cycle-values speed 1 2";
# space = "frame-step; cycle-values speed 1 2"; # space = "frame-step; cycle-values speed 1 2";
DOWN = "add volume -5"; DOWN = "add volume -5";
UP = "add volume 5"; UP = "add volume 5";
}; };
}; };
} }

View file

@ -19,10 +19,10 @@
"video/*" = ["mpv.desktop"]; "video/*" = ["mpv.desktop"];
}; };
}; };
userDirs = { userDirs = {
enable =true; enable = true;
desktop = "~/media/pic/screen"; desktop = "~/media/pic/screen";
download = "~/dl"; download = "~/dl";
}; };
}; };
} }