mpv: make uosc elements translucent

This commit is contained in:
Donovan Glover 2024-12-18 04:31:19 -05:00
parent 5dbbdff852
commit a643b97cdc
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ lib, pkgs, ... }:
{
programs.mpv = {
@ -41,4 +41,26 @@
thumbfast
];
};
xdg.configFile."mpv/script-opts/uosc.conf".text = lib.concatStrings [
"opacity="
",timeline=0.1"
",position=0.1"
",chapters=0.1"
",slider=0.1"
",slider_gauge=0.1"
",controls=0.1"
",speed=0.1"
",menu=0.1"
",submenu=0.1"
",border=0.1"
",title=0.1"
",tooltip=0.1"
",thumbnail=0.1"
",curtain=0.1"
",idle_indicator=0.1"
",audio_indicator=0.1"
",buffering_indicator=0.1"
",playlist_position=0.1"
];
}