3 snippets
Snippets
Small, self-contained bits of config and code I don’t want to lose, like my Jellyfin theme, tinyMediaManager renamer patterns, dotfiles, and other things too small for their own post but worth bookmarking.
Theming
-
Jellyfin custom theme css
scyfin theme x neo
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css'); .adminDrawerLogo img { content: url(https://i.imgur.com/adhRKTl.png) !important; } imgLogoIcon { content: url(https://i.imgur.com/adhRKTl.png) !important; } .pageTitleWithLogo { background-image: url(https://i.imgur.com/adhRKTl.png) !important; } .jellyfinEnhancedSection { display: none !important; } .adminMenuOptions > a:nth-child(4) { display: none !important; }
Media management
-
tinyMediaManager movie renamer pattern jmte
The JMTE pattern I use in tinyMediaManager’s Renamer settings so movie folders come out as
Bugs Bunny - Remastered (1999) 1080P AAC 5.1 H265 BLU-RAY, with the edition tag only showing up when one is actually set.${title} ${- ,edition,} (${year}) ${videoFormat;upper} ${audioCodec;upper} ${audioChannelsDotAsString;upper} ${videoCodec;upper} ${mediaSource;upper} ${hdrformat} -
tinyMediaManager tv-show renamer pattern jmte
The JMTE pattern I use in tinyMediaManager’s Renamer settings so episode files come out as
Bunny - S01E01 - The Arrival (2020) 1080P EAC3 5.1 H265 WEBRIP, with the edition tag only showing up when one is actually set.${showTitle} - S${seasonNr2}E${episodeNr2} - ${title} ${- ,edition,} (${year}) ${videoFormat;upper} ${audioCodec;upper} ${audioChannelsDotAsString;upper} ${videoCodec;upper} ${mediaSource;upper} ${hdrformat}