1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-08 18:13:52 +00:00
ultima/modules/home/programs/gui/mpv/osc.nix

21 lines
517 B
Nix

{ config, ... }:
with config.lib.stylix.colors.withHashtag;
{
xdg.configFile."mpv/script-opts/osc.conf".text = ''
layout=bottombar
seekbarstyle=bar
boxalpha=0
fadeduration=120
background_color=${base00}
timecode_color=${base04}
title_color=${base06}
time_pos_color=${base06}
time_pos_outline_color=${base06}
buttons_color=${base06}
top_buttons_color=${base06}
small_buttonsL_color=${base06}
small_buttonsR_color=${base06}
held_element_color=${base06}
'';
}