shmanio

joined 1 year ago
[–] [email protected] 0 points 2 days ago* (last edited 2 days ago) (1 children)

It's a path inside the container, but not inside /config. You should mount the file like this:

volumes:
  - /path/to/local/theme.css:/jellyfin/jellyfin-web/theme.css
[–] [email protected] 0 points 3 days ago* (last edited 3 days ago) (3 children)

You should put it in Jellyfin web's root folder (paths are relative to it). In the official container it's /jellyfin/jellyfin-web.

Then you just @import "theme.css";.

0
submitted 3 days ago* (last edited 3 days ago) by [email protected] to c/[email protected]
 

I've modified the normal Jellyfin theme so that the accent color can be changed.

The idea was to put some orange in the UI during halloween, and I got carried away. It is now completely configurable with a single variable and allows for easy seasonal changes, so I've decided to share it.

Here is the result:

I generally dislike custom themes, so my goal was to change as little as possible. Indeed, if used with a hue of 195, the theme should be exactly the same as the default one.

What do you think?

[–] [email protected] 0 points 2 months ago (2 children)

It is not different from how the previous shared libraries worked. I guess it's there to stop cheaters from buying a single copy of the game and sharing it with throwaway accounts.

 

A friend challenged me to score more than 100

[–] [email protected] 0 points 5 months ago
 

I've found some discussions about hosting the Jellyfin server on lower end devices, but what about the client? I imagine the requirements to be pretty low, since a gen 2 Chromecast worked fine.

Has someone tried setting up a raspberry pi in kiosk mode? Can you suggest something cheap that would be good enough for 1080p?

[–] [email protected] 0 points 9 months ago

Romero's Night of the Living Dead is in the public domain as well.

You can find it in the Internet Archive here: https://archive.org/details/night_of_the_living_dead

[–] [email protected] 0 points 9 months ago
[–] [email protected] 5 points 9 months ago

It could be an issue with the codecs (browsers are usually pretty limited in what they support). You could try to use a client like Jellyfin Media Player instead. It bundles libmpv, so it plays almost any video format there is.

[–] [email protected] 0 points 9 months ago

Since you are sharing anecdotes, let me join.

For me FF has always been extremely stable, and I too regularly keep 100+ tabs open, on much more limited system resources. It is so stable that I've completely disabled history saving, and if there is something I want to read later I just keep the tab open. Never had an issue.

Tree Style Tabs also pushed me to have many tabs, because now I can actually organize those that I've opened and find them later.

[–] [email protected] 1 points 1 year ago* (last edited 7 months ago)

You should put some quotes where you use the array:

not_what_you_think=( "a b" "c" "d" )
for sneaky in "${not_what_you_think[@]}"; do
  echo "This is sneaky: ${sneaky}"
done

This is sneaky: a b
This is sneaky: c
This is sneaky: d