mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.mpv = {
|
|
enable = true;
|
|
scripts = [ pkgs.mpvScripts.sponsorblock ];
|
|
bindings =
|
|
let
|
|
unbind = "keyup"; in
|
|
{
|
|
"WHEEL_UP" = "add volume 2";
|
|
"WHEEL_DOWN" = "add volume -2";
|
|
"ctrl+r" = "loadfile \${path}";
|
|
};
|
|
config = {
|
|
profile = "gpu-hq";
|
|
gpu-context = "wayland";
|
|
vo = "gpu";
|
|
volume-max = 200;
|
|
keep-open = true;
|
|
opengl-waitvsync = true;
|
|
hwdec = "auto";
|
|
demuxer-max-bytes = "2000MiB";
|
|
demuxer-max-back-bytes = "250MiB";
|
|
osd-scale-by-window = false;
|
|
osd-bar-h = 2.5; # 3.125 default
|
|
osd-border-size = 2; # font border pixels, default 3
|
|
term-osd-bar = true;
|
|
script-opts = lib.concatStringsSep ","
|
|
(lib.mapAttrsToList (k: v: "${k}=${toString v}") {
|
|
osc-layout = "slimbox";
|
|
osc-vidscale = "no";
|
|
osc-deadzonesize = 0.75;
|
|
osc-minmousemove = 4;
|
|
osc-hidetimeout = 2000;
|
|
osc-valign = 0.9;
|
|
osc-timems = "yes";
|
|
osc-seekbarstyle = "knob";
|
|
osc-seekbarkeyframes = "no";
|
|
osc-seekrangestyle = "slider";
|
|
});
|
|
};
|
|
};
|
|
}
|