Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ services:
PLEXFRIEND: False
PLEXFRIENDCOLOR: True
JELLYFIN: False
JELLYFINCOLOR: False
TMDB: False
TMDBCOLOR: True
RADARRSONARR: False
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ with the support of NinthWalker
-----------------------------------------
"
echo "New install detected. Copying config files.."
cp /app/.env.example /app/plex.py /app/plex_color.py /app/plexfriend.py /app/plexfriend_color.py /app/TMDB.py /app/TMDB_color.py /app/TMDB_color.py /app/radarrsonarr.py /app/radarrsonarr_color.py /app/trakt.py /app/jellyfin.py /config/
cp /app/.env.example /app/plex.py /app/plex_color.py /app/plexfriend.py /app/plexfriend_color.py /app/TMDB.py /app/TMDB_color.py /app/TMDB_color.py /app/radarrsonarr.py /app/radarrsonarr_color.py /app/trakt.py /app/jellyfin.py /app/jellyfin_color.py /config/

# Create post-processing scripts if needed
/bin/sh /create_post_scripts.sh >> /config/log.txt 2>&1
Expand Down
6 changes: 6 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ if [ "$(echo "$JELLYFIN" | tr '[:upper:]' '[:lower:]')" = "true" ]; then
mv -f jellyfin_backgrounds/* /backgrounds/
rm -rf jellyfin_backgrounds
fi
if [ "$(echo "$JELLYFINCOLOR" | tr '[:upper:]' '[:lower:]')" = "true" ]; then
echo "($(date)) [START] Retrieving Jellyfin Color Backgrounds.."
python jellyfin_color.py
mv -f jellyfin_backgrounds/* /backgrounds/
rm -rf jellyfin_backgrounds
fi
if [ "$(echo "$TMDB" | tr '[:upper:]' '[:lower:]')" = "true" ]; then
echo "($(date)) [START] Retrieving TMDB Backgrounds.."
python TMDB.py
Expand Down
Loading