mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 19:03:53 +00:00
20 lines
517 B
Nix
20 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}
|
|
'';
|
|
}
|