nix-config/home/mpv.nix
Donovan Glover e2e8971eb3
chore: Simplify variable usage
Changes made:

- Preferred "inherits" where possible
- Removed unnecessary comments
- Added variables to avoid duplicate strings
- Reduced usage of "with x;"
2024-04-05 13:30:39 -04:00

48 lines
912 B
Nix

{ pkgs, ... }:
let
inherit (pkgs.mpvScripts) mpris uosc thumbfast;
in
{
programs.mpv = {
enable = true;
config = {
video-sync = "display-resample";
interpolation = true;
tscale = "oversample";
fullscreen = true;
sub-auto = "fuzzy";
sub-font = "Noto Sans CJK JP Medium";
sub-blur = 10;
sub-file-paths = "subs:subtitles:";
screenshot-format = "png";
title = "\${filename} - mpv";
script-opts = "osc-title=\${filename},osc-boxalpha=150,osc-visibility=never,osc-boxvideo=yes";
osc = "no";
osd-on-seek = "no";
osd-bar = "no";
osd-bar-w = 30;
osd-bar-h = "0.2";
osd-duration = 750;
really-quiet = "yes";
autofit = "65%";
};
bindings = {
"ctrl+a" = "script-message osc-visibility cycle";
};
scripts = [
mpris
uosc
thumbfast
];
};
}