Emby
Custom Emby CSS
🛠️ Installation¶
Click here for general setup¶
Docker Mod¶
Docker Mod 🐳
Set the theme to Light
as the mod changes the /dashboard-ui/modules/themes/light/theme.css
file
Subfilter¶
Warning
Subfiltering can make your Emby instance unavailable remotely. Seems like they have some security features, or something breaks when changing the HTML.
You need to subfilter the </body>
instead of the </head>
tag. See example below.
proxy_set_header Accept-Encoding "";
sub_filter
'</body>'
'<link rel="stylesheet" type="text/css" href="https://theme-park.dev/css/base/emby/dracula.css">
</body>';
sub_filter_once on;