-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_sample.toml
58 lines (51 loc) · 2.55 KB
/
config_sample.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# URL to the Plex server
plex_url = "http://192.168.x.x:32400"
# How to find a token:
# https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/
# You may also be able to find one by looking at Plex cookies.
# A token looks something like: fIHGeXfEbda_3X_AB123
plex_token = "..."
# Plex libraries to scan for shows and movies
# Note: Change this -- you will receive warnings for libraries that don't exist!
#
# If you want to hide summaries for unseen movies as well as TV episodes, add your movie library/libraries here!
libraries = ['TV Shows', 'TV Series']
# Set up which things the script should hide.
# By default, episode summaries are hidden, but not episode titles or thumbnails.
# If thumbnails are hidden, a fallback image for the show is used instead.
#
# For movies (if you add your movie library/libraries above), only summaries are hidden, since
# hiding the movie name or poster/cover makes little sense.
hide_summaries = true
hide_titles = false
hide_thumbnails = false
# The following setting controls whether thumbnails are processed AT ALL.
# Setting this to false will improve performance for those who don't want to hide thumbnails; with thousands of episodes,
# this can be a >10x speedup, as checking the thumbnails is rather slow.
# This must be true if hide_thumbnails is true above.
#
# PLEASE NOTE:
# When this is false, thumbnails/posters will not even be looked at, which means if they have been hidden
# by the script previously, they will not be unhidden, not even with the --restore-all argument.
process_thumbnails = true
# The text to show in Plex for episodes/movies with their summmary/title hidden.
#
# !! IMPORTANT !!
# In order to change this after you've used the script at least once, you should run --restore-all first, wait for
# Plex to re-download all metadata, and only *then* change this.
# If you simply change the text string, the script won't work properly, as it checks for this string to identify
# which episodes/movies we've hidden the summary from, and previously hidden episodes won't be recognized as such.
hidden_summary_string = "Summary hidden."
hidden_title_string = "(Title hidden)"
# You can specify a list of shows and movies to ignore.
# Ignored shows/movies always have their summaries visible.
# For example, you may want to show the summaries for shows you already know by heart,
# or for certain shows (like comedy shows) where the summary doesn't really spoil anything.
#
# Specify this as a TOML multiline string. For example:
# ignored_items = """
# Seinfeld
# Stargate SG-1
# """
ignored_items = """
"""