Closes: https://github.com/danth/stylix/issues/1089 Link: https://github.com/danth/stylix/pull/1090 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ lib, config, ... }:
|
|
{
|
|
options.stylix.targets.mpv.enable = config.lib.stylix.mkEnableTarget "mpv" true;
|
|
|
|
config = lib.mkIf (config.stylix.enable && config.stylix.targets.mpv.enable) {
|
|
programs.mpv = {
|
|
config = with config.lib.stylix.colors.withHashtag; {
|
|
osd-font = config.stylix.fonts.monospace.name;
|
|
sub-font = config.stylix.fonts.monospace.name;
|
|
osd-font-size = config.stylix.fonts.sizes.applications;
|
|
|
|
background-color = "#000000";
|
|
osd-back-color = base01;
|
|
osd-border-color = base01;
|
|
osd-color = base05;
|
|
osd-shadow-color = base00;
|
|
};
|
|
|
|
scriptOpts = {
|
|
uosc.color =
|
|
with config.lib.stylix.colors;
|
|
lib.concatMapAttrsStringSep "," (name: value: "${name}=${value}") {
|
|
background = base00;
|
|
background_text = base05;
|
|
foreground = base05;
|
|
foreground_text = base00;
|
|
curtain = base0D;
|
|
success = base0A;
|
|
error = base0F;
|
|
};
|
|
|
|
modernz = with config.lib.stylix.colors.withHashtag; {
|
|
seekbarfg_color = base0D;
|
|
seekbarbg_color = base03;
|
|
seekbar_cache_color = base03;
|
|
window_title_color = base03;
|
|
window_controls_color = base03;
|
|
|
|
title_color = base05;
|
|
time_color = base05;
|
|
chapter_title_color = base05;
|
|
cache_info_color = base05;
|
|
|
|
middle_buttons_color = base0D;
|
|
side_buttons_color = base03;
|
|
playpause_color = base0D;
|
|
hover_effect_color = base0E;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|