This commit is contained in:
xunuwu 2024-02-07 19:05:44 +01:00
commit 498f3050d5
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
145 changed files with 2964 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{pkgs, ...}: {
programs.mpv = {
enable = true;
config = {
vo = "gpu-next";
gpu-api = "vulkan";
scale = "ewa_lanczos";
deband = true;
sub-auto = "fuzzy";
slang = ["eng" "en"];
save-position-on-quit = true;
# update watch history
ytdl-raw-options = "mark-watched=,cookies-from-browser=firefox";
};
profiles = {
"extension.gif" = {
cache = false;
loop-file = true;
};
"protocol.https" = {
cache-secs = 100;
user-agent = "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/116.0";
};
"protocol.http" = {
cache-secs = 100;
user-agent = "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/116.0";
};
};
};
}