flecs
flecs copied to clipboard
[Feature request] Config option for css styling
I know you can create a plugin but it would be convenient if you can simply point to a css file(s) in the config file. This would also make it easier for users would don't want to build it.
Hey @DrunkenToast, thanks for the feedback! The feature should actually be straightforward to implement (other parts of the code already inject CSS), I opened https://github.com/th-ch/youtube-music/pull/800 to allow users to pass custom CSS files:
"options": {
…
"cssFiles": [
"path-to-file-1.css",
"path-to-file-2.css"
]
}
I renamed the option to themes
, and there is now a menu entry to set it! PR is merged, it will ship in the next version - closing the issue, feel free to re-open if needed :)