lots of changes yes im bad i should commit more often sue me

This commit is contained in:
2025-07-15 09:58:45 +01:00
parent c08da164ac
commit b9e7e22ddd
12 changed files with 106 additions and 31 deletions

View File

@@ -41,7 +41,7 @@
package = pkgs.brave;
};
mpv = lib.mkDefault {
mpv = {
enable = true;
package = (
pkgs.mpv-unwrapped.wrapper {
@@ -56,8 +56,14 @@
}
);
config = {
screenshot-directory = "~/Pictures/";
screenshot-template = "%F/%F_snapshot_%P";
screenshot-directory = lib.mkDefault "~/Pictures/";
screenshot-template = lib.mkDefault "%F/%F_snapshot_%P";
sub-ass-use-video-data = lib.mkDefault "aspect-ratio";
};
scriptOpts = {
uosc = {
time_precision = 2;
};
};
};
};