├── README.md ├── assets ├── IMDb Popular │ └── poster.jpg ├── IMDb Top 250 │ └── poster.jpg ├── TMDb Popular │ └── poster.jpg ├── TMDb Top Rated │ └── poster.jpg ├── TMDb Trending │ └── poster.jpg ├── Trakt Popular │ └── poster.jpg ├── Trakt Trending and Popular │ └── poster.jpg └── Trakt Trending │ └── poster.jpg ├── config.yml ├── movies-best-decade.yml ├── movies-trakt.yml ├── movies_imdb.yml ├── movies_tmdb.yml ├── overlays ├── 4K.png ├── 4K.yml ├── IMDB-Top-250.png ├── IMDBSCORE.png ├── IMDBrating_overlays.yml ├── TMDBSCORE.png ├── TMDBrating_overlays.yml ├── TVDBSCORE.png ├── TVDBrating_overlays.yml ├── images │ ├── 1080P-DV.png │ ├── 1080P-HDR.png │ ├── 1080P.png │ ├── 480P-DV.png │ ├── 480P-HDR.png │ ├── 480P.png │ ├── 4K-DV.png │ ├── 4K-HDR.png │ ├── 4K.png │ ├── 720P-DV.png │ ├── 720P-HDR.png │ ├── 720P.png │ ├── Amazon.png │ ├── AppleTV.png │ ├── Blu-Ray.png │ ├── Criterion.png │ ├── DTS-ES.png │ ├── DTS-HD.png │ ├── DTS-X.png │ ├── DTS.png │ ├── DVD.png │ ├── Direct-Play.png │ ├── Disney.png │ ├── Dolby-Atmos.png │ ├── Dolby-Digital-Plus.png │ ├── Dolby-Digital.png │ ├── Dolby-TrueHD.png │ ├── Dual-Audio.png │ ├── HBO-Max.png │ ├── HDTV.png │ ├── Hulu.png │ ├── IMAX-E.png │ ├── IMAX.png │ ├── IMDB-Top-250.png │ ├── IMDBSCORE.png │ ├── METACRITICG.png │ ├── METACRITICR.png │ ├── METACRITICY.png │ ├── Multi-Audio.png │ ├── Netflix.png │ ├── Opus.png │ ├── Paramount.png │ ├── Peacock.png │ ├── Prime.png │ ├── Remux.png │ ├── TMDBSCORE.png │ ├── TVDBSCORE.png │ └── WEB.png ├── imdb_top_250.yml ├── temp.jpg └── temp.png ├── show ├── decades.yml ├── imdb_tmdb_top250.yml ├── imdb_top250.yml └── tmdb_top250.yml └── templates.yml /README.md: -------------------------------------------------------------------------------- 1 | # Seamonkey420s-Kometa-Config 2 | ## My personal Kometa config and setup. 3 | Kometa (previously known as Plex Meta Manager/PMM): https://kometa.wiki/en/latest/ 4 | 5 | -IMDB collections for Movies and TV Shows: Top 250, Popular, Trending 6 | 7 | -Best of 2020s, 2010s, 2000s, 1990s, 1980s via Trakt Lists 8 | 9 | -Trakt collections for Movies: Popular, Trending 10 | 11 | -TMDB collections for TV Shows and Cartoons: Top 250, Popular, Trending 12 | 13 | -IMDB and TMDB score overlays for Movies, TV Shows, Cartoons 14 | 15 | -4K overlay for 4K movies (including 4K DV, 4K HDR) for 4K movies 16 | 17 | -IMDB Top 250 Overlay for Movies, TV Shows, Cartoons 18 | 19 | -Decade collections for Cartoons 20 | 21 | **Setup Notes:** 22 | 23 | Be sure to setup the section below settings in the config.yml with your servers info at the bottom (aka Plex url, api keys, etc)! I would recommend testing on a smaller library or even create a test library in Plex with just two or so movies. I have removed the ARR configurations since i do not use them but they can be readded by getting from the pmm wiki page. 24 | 25 | Examples below show using latest image, if you using develop image: replace kometateam/kometa:latest with kometateam/kometa:develop 26 | 27 | 28 | **Example command to run specific .ymls from putty / ssh (replace config-custom.yml with your yml):** 29 | ``` 30 | sudo -i 31 | 32 | docker run --rm -it -v "/volume1/docker/kometa:/config:rw" kometateam/kometa:latest --config "/config/config-custom.yml" --run 33 | ``` 34 | 35 | **Example command to run in Synology as scheduled task (ran as root):** 36 | ``` 37 | docker run --rm -v "/volume1/docker/kometa:/config:rw" kometateam/kometa:latest --config "/config/config-custom.yml" --run 38 | ``` 39 | **Example command to run in terminal in Docker or Container Manager within Synology's DSM7 (second line shows running specific config yml file):** 40 | ``` 41 | python kometa.py -r 42 | 43 | python kometa.py --config /config/config-custom.yml 44 | ``` 45 | Screenshot examples below: 46 | 47 | ![pmm movies collections](https://user-images.githubusercontent.com/6142436/214715369-2cd1b228-bd77-4a4a-81c9-8dcce753bdd4.png) 48 | 49 | ![pmm IMDB overlays](https://user-images.githubusercontent.com/6142436/214715368-8c0e4b83-56ee-4d32-b6c8-7c029c3d5711.png) 50 | 51 | ![pmm tv shows overlays](https://user-images.githubusercontent.com/6142436/214715365-19505dbf-d775-469f-9bb1-012d3665b4df.png) 52 | 53 | ![pmm cartoons collections and tmdb overlay](https://user-images.githubusercontent.com/6142436/214715367-001a3687-181e-40b8-a123-6f67b2606e27.png) 54 | 55 | ![pmm 4K overlay](https://github.com/seamonkey420/Seamonkey420s-PlexMetaManager-Config/assets/6142436/c2f04e60-d5cf-4dec-a311-c3e8c92ab0ee) 56 | 57 | -------------------------------------------------------------------------------- /assets/IMDb Popular/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/IMDb Popular/poster.jpg -------------------------------------------------------------------------------- /assets/IMDb Top 250/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/IMDb Top 250/poster.jpg -------------------------------------------------------------------------------- /assets/TMDb Popular/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/TMDb Popular/poster.jpg -------------------------------------------------------------------------------- /assets/TMDb Top Rated/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/TMDb Top Rated/poster.jpg -------------------------------------------------------------------------------- /assets/TMDb Trending/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/TMDb Trending/poster.jpg -------------------------------------------------------------------------------- /assets/Trakt Popular/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/Trakt Popular/poster.jpg -------------------------------------------------------------------------------- /assets/Trakt Trending and Popular/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/Trakt Trending and Popular/poster.jpg -------------------------------------------------------------------------------- /assets/Trakt Trending/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/assets/Trakt Trending/poster.jpg -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- 1 | ## This file is a template remove the .template to use the file 2 | 3 | libraries: 4 | 4K Movies: # Each library must match the Plex library name 5 | collection_files: 6 | - file: config/movies_imdb.yml 7 | - file: config/movies_tmdb.yml 8 | - file: config/movies-best-decade.yml 9 | - file: config/movies-trakt.yml 10 | overlay_files: 11 | - remove_overlays: false # Set this to true to remove all overlays 12 | - file: config/overlays/IMDBrating_overlays.yml 13 | - file: config/overlays/imdb_top_250.yml 14 | - file: config/overlays/4K.yml 15 | Movies: 16 | # schedule: weekly(sunday) 17 | collection_files: 18 | - file: config/movies_imdb.yml 19 | - file: config/movies_tmdb.yml 20 | - file: config/movies-best-decade.yml 21 | - file: config/movies-trakt.yml 22 | overlay_files: 23 | - remove_overlays: false # Set this to true to remove all overlays 24 | - file: config/overlays/IMDBrating_overlays.yml 25 | - file: config/overlays/imdb_top_250.yml 26 | TV Shows: 27 | collection_files: 28 | - file: config/show/imdb_top250.yml 29 | operations: 30 | mass_critic_rating_update: mdb_tmdb 31 | overlay_files: 32 | - remove_overlays: false # Set this to true to remove all overlays 33 | - file: config/overlays/TMDBrating_overlays.yml 34 | - file: config/overlays/imdb_top_250.yml 35 | Cartoons: 36 | collection_files: 37 | - file: config/show/decades.yml 38 | - file: config/show/imdb_top250.yml 39 | operations: 40 | mass_critic_rating_update: mdb_tmdb 41 | overlay_files: 42 | - remove_overlays: false # Set this to true to remove all overlays 43 | - file: config/overlays/TMDBrating_overlays.yml 44 | - file: config/overlays/imdb_top_250.yml 45 | settings: 46 | cache: true 47 | cache_expiration: 60 48 | asset_directory: config/assets 49 | asset_folders: true 50 | asset_depth: 0 51 | create_asset_folders: false 52 | prioritize_assets: false 53 | dimensional_asset_rename: false 54 | download_url_assets: false 55 | show_missing_season_assets: false 56 | show_missing_episode_assets: false 57 | show_asset_not_needed: true 58 | sync_mode: sync 59 | minimum_items: 1 60 | default_collection_order: 61 | delete_below_minimum: true 62 | delete_not_scheduled: false 63 | run_again_delay: 2 64 | missing_only_released: false 65 | only_filter_missing: false 66 | show_unmanaged: false 67 | show_filtered: false 68 | show_options: false 69 | show_missing: false 70 | show_missing_assets: false 71 | save_report: false 72 | tvdb_language: eng 73 | ignore_ids: 74 | ignore_imdb_ids: 75 | item_refresh_delay: 0 76 | playlist_sync_to_user: all 77 | playlist_report: false 78 | verify_ssl: true 79 | custom_repo: 80 | check_nightly: false 81 | show_unconfigured: true 82 | playlist_exclude_users: 83 | webhooks: # Can be individually specified per library as well 84 | error: 85 | version: 86 | run_start: 87 | run_end: 88 | changes: 89 | delete: 90 | plex: # Can be individually specified per library as well; REQUIRED for the script to run 91 | url: 92 | token: 93 | timeout: 60 94 | clean_bundles: false 95 | empty_trash: false 96 | optimize: false 97 | tmdb: # REQUIRED for the script to run 98 | apikey: 99 | language: en 100 | cache_expiration: 60 101 | region: 102 | trakt: 103 | client_id: 104 | client_secret: 105 | pin: 106 | authorization: 107 | # everything below is autofilled by the script 108 | access_token: 109 | token_type: 110 | expires_in: 111 | refresh_token: 112 | scope: public 113 | created_at: 114 | -------------------------------------------------------------------------------- /movies-best-decade.yml: -------------------------------------------------------------------------------- 1 | external_templates: 2 | git: PMM/templates 3 | template_variables: 4 | collection_section: "01" 5 | 6 | collections: 7 | Best of 2020s: 8 | sort_title: !02 +30 9 | summary: Best Movies of the 2020's (maintained by mdblist.com) 10 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/decade/best/2020.jpg 11 | collection_order: custom 12 | trakt_list: https://trakt.tv/users/mmagtech/lists/best-of-2020-2030 13 | Best of 2010s: 14 | sort_title: !02 +31 15 | summary: Best Movies of the 2010's (maintained by mdblist.com) 16 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/decade/best/2010.jpg 17 | collection_order: custom 18 | trakt_list: https://trakt.tv/users/hdlists/lists/best-of-the-2010s 19 | Best of 2000s: 20 | sort_title: !02 +32 21 | summary: Best Movies of the 2000's (maintained by mdblist.com) 22 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/decade/best/2000.jpg 23 | collection_order: custom 24 | trakt_list: https://trakt.tv/users/hdlists/lists/best-of-the-00s 25 | Best of 1990s: 26 | sort_title: !02 +33 27 | summary: Best Movies of the 1990's (maintained by mdblist.com) 28 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/decade/best/1990.jpg 29 | collection_order: custom 30 | trakt_list: https://trakt.tv/users/hdlists/lists/rottentomatoes-com-s-best-of-the-90s 31 | Best of 1980s: 32 | sort_title: !02 +34 33 | summary: Best Movies of the 1980's (maintained by mdblist.com) 34 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/decade/best/1980.jpg 35 | collection_order: custom 36 | trakt_list: https://trakt.tv/users/hdlists/lists/rottentomatoes-com-s-best-of-the-80s 37 | -------------------------------------------------------------------------------- /movies-trakt.yml: -------------------------------------------------------------------------------- 1 | collections: 2 | Trakt Trending: 3 | sort_title: !03 +20 4 | trakt_chart: 5 | - chart: trending 6 | limit: 100 7 | collection_order: custom 8 | sync_mode: sync 9 | summary: Trakt Trending Movies. 10 | 11 | Trakt Popular: 12 | sort_title: !03 +21 13 | trakt_chart: 14 | - chart: trending 15 | limit: 100 16 | collection_order: custom 17 | sync_mode: sync 18 | summary: Trakt Popular Movies. 19 | -------------------------------------------------------------------------------- /movies_imdb.yml: -------------------------------------------------------------------------------- 1 | ############################################################# 2 | # IMDb Chart Collections # 3 | # Created by Yozora, Bullmoose20, & Sohjiro # 4 | ############################################################# 5 | # Call this from your config.yml (Movie or Show) # 6 | # If nothing is specified these are the defaults # 7 | # # 8 | # metadata_path: # 9 | # - git: PMM/chart/imdb # 10 | # template_variables: # 11 | # # Sets the collection mode of the collection # 12 | # collection_mode: # 13 | # # Sets the value at the start of the sort title # 14 | # collection_section: "01" # 15 | # # 16 | # # Turn the IMDb Popular collection on/off # 17 | # use_popular: true # 18 | # # Determines collection order in it's section # 19 | # order_popular: # 20 | # # Set visible_library for IMDb Popular # 21 | # visible_library_popular: # 22 | # # Set visible_home for IMDb Popular # 23 | # visible_home_popular: # 24 | # # Set visible_shared for IMDb Popular # 25 | # visible_shared_popular: # 26 | # # 27 | # # Turn the IMDb Top 250 collection on/off # 28 | # use_top: true # 29 | # # Determines collection order in it's section # 30 | # order_top: # 31 | # # Set visible_library for IMDb Top 250 # 32 | # visible_library_top: # 33 | # # Set visible_home for IMDb Top 250 # 34 | # visible_home_top: # 35 | # # Set visible_shared for IMDb Top 250 # 36 | # visible_shared_top: # 37 | # # 38 | # # Turn the IMDb Lowest collection on/off # 39 | # use_lowest: true # 40 | # # Determines collection order in it's section # 41 | # order_trending: # 42 | # # Set visible_library for IMDb Lowest # 43 | # visible_library_lowest: # 44 | # # Set visible_home for IMDb Lowest # 45 | # visible_home_lowest: # 46 | # # Set visible_shared for IMDb Lowest # 47 | # visible_shared_lowest: # 48 | ############################################################# 49 | 50 | external_templates: 51 | git: PMM/templates 52 | template_variables: 53 | collection_section: "01" 54 | 55 | templates: 56 | 57 | imdb: 58 | imdb_chart: <>_<>s 59 | collection_order: custom 60 | sync_mode: sync 61 | 62 | collections: 63 | 64 | IMDb Popular: 65 | template: 66 | - name: imdb 67 | chart: popular 68 | key: popular 69 | 70 | IMDb Top 250: 71 | template: 72 | - name: imdb 73 | chart: top 74 | key: top 75 | 76 | IMDb Top Rated: 77 | imdb_chart: top_english 78 | collection_order: custom 79 | sync_mode: sync 80 | -------------------------------------------------------------------------------- /movies_tmdb.yml: -------------------------------------------------------------------------------- 1 | ############################################################# 2 | # TMDb Chart Collections # 3 | # Created by Yozora, Bullmoose20, & Sohjiro # 4 | ############################################################# 5 | # Call this from your config.yml (Movie or Show) # 6 | # If nothing is specified these are the defaults # 7 | # # 8 | # metadata_path: # 9 | # - git: PMM/chart/tmdb # 10 | # template_variables: # 11 | # # Sets the collection mode of the collection # 12 | # collection_mode: # 13 | # # Sets the value at the start of the sort title # 14 | # collection_section: "01" # 15 | # # 16 | # # Turn the TMDb Airing Today collection on/off # 17 | # use_airing: true # 18 | # # Determines collection order in it's section # 19 | # order_airing: # 20 | # # Set visible_library for TMDb Airing Today # 21 | # visible_library_airing: # 22 | # # Set visible_home for TMDb Airing Today # 23 | # visible_home_airing: # 24 | # # Set visible_shared for TMDb Airing Today # 25 | # visible_shared_airing: # 26 | # # Set limit for TMDb Airing Today # 27 | # limit_airing: 100 # 28 | # # 29 | # # Turn the TMDb On The Air collection on/off # 30 | # use_air: true # 31 | # # Determines collection order in it's section # 32 | # order_air: # 33 | # # Set visible_library for TMDb On The Air # 34 | # visible_library_air: # 35 | # # Set visible_home for TMDb On The Air # 36 | # visible_home_air: # 37 | # # Set visible_shared for TMDb On The Air # 38 | # visible_shared_air: # 39 | # # Set limit for TMDb On The Air # 40 | # limit_air: 100 # 41 | # # 42 | # # Turn the TMDb Popular collection on/off # 43 | # use_popular: true # 44 | # # Determines collection order in it's section # 45 | # order_popular: # 46 | # # Set visible_library for TMDb Popular # 47 | # visible_library_popular: # 48 | # # Set visible_home for TMDb Popular # 49 | # visible_home_popular: # 50 | # # Set visible_shared for TMDb Popular # 51 | # visible_shared_popular: # 52 | # # Set limit for TMDb Popular # 53 | # limit_popular: 100 # 54 | # # 55 | # # Turn the TMDb Top Rated collection on/off # 56 | # use_top: true # 57 | # # Determines collection order in it's section # 58 | # order_top: # 59 | # # Set visible_library for TMDb Top Rated # 60 | # visible_library_top: # 61 | # # Set visible_home for TMDb Top Rated # 62 | # visible_home_top: # 63 | # # Set visible_shared for TMDb Top Rated # 64 | # visible_shared_top: # 65 | # # Set limit for TMDb Top Rated # 66 | # limit_top: 100 # 67 | # # 68 | # # Turn the TMDb Trending collection on/off # 69 | # use_trending: true # 70 | # # Determines collection order in it's section # 71 | # order_trending: # 72 | # # Set visible_library for TMDb Trending # 73 | # visible_library_trending: # 74 | # # Set visible_home for TMDb Trending # 75 | # visible_home_trending: # 76 | # # Set visible_shared for TMDb Trending # 77 | # visible_shared_trending: # 78 | # # Set limit for TMDb Trending # 79 | # limit_trending: 100 # 80 | ############################################################# 81 | 82 | external_templates: 83 | git: PMM/templates 84 | template_variables: 85 | collection_section: "01" 86 | 87 | templates: 88 | # airing: 89 | # default: 90 | # limit_airing: 100 91 | # tmdb_airing_today: <> 92 | # summary: A collection of shows with episodes airing today 93 | 94 | # air: 95 | # default: 96 | # limit_air: 100 97 | # tmdb_on_the_air: <> 98 | # summary: A collection of shows that are still activaly airing episodes 99 | 100 | popular: 101 | default: 102 | limit_popular: 100 103 | tmdb_popular: <> 104 | summary: A collection of the most watched <>s according to TMDb. 105 | 106 | top: 107 | default: 108 | limit_top: 100 109 | tmdb_top_rated: <> 110 | summary: A collection of the top rated <>s according to TMDb. 111 | 112 | trending: 113 | default: 114 | limit_trending: 100 115 | tmdb_trending_weekly: <> 116 | summary: A collection of <>s trending on TMDb 117 | 118 | collections: 119 | 120 | # TMDb Airing Today: 121 | # template: 122 | # - name: airing 123 | # Syncmode: sync 124 | # - name: chart_shared 125 | # key: airing 126 | # check_library: show 127 | 128 | # TMDb On The Air: 129 | # template: 130 | # - name: air 131 | # Syncmode: sync 132 | # - name: chart_shared 133 | # key: air 134 | # check_library: show 135 | 136 | TMDb Popular: 137 | template: 138 | - name: popular 139 | Syncmode: sync 140 | collection_order: custom 141 | key: popular 142 | 143 | TMDb Top Rated: 144 | template: 145 | - name: top 146 | Syncmode: sync 147 | collection_order: custom 148 | key: top 149 | 150 | TMDb Trending: 151 | template: 152 | - name: trending 153 | Syncmode: sync 154 | key: trending 155 | -------------------------------------------------------------------------------- /overlays/4K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/4K.png -------------------------------------------------------------------------------- /overlays/4K.yml: -------------------------------------------------------------------------------- 1 | overlays: 2 | 4K: 3 | plex_search: 4 | all: 5 | resolution: 4K 6 | -------------------------------------------------------------------------------- /overlays/IMDB-Top-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/IMDB-Top-250.png -------------------------------------------------------------------------------- /overlays/IMDBSCORE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/IMDBSCORE.png -------------------------------------------------------------------------------- /overlays/IMDBrating_overlays.yml: -------------------------------------------------------------------------------- 1 | overlays: 2 | 3 | IMDBSCORE: 4 | plex_all: true 5 | overlay: 6 | name: IMDBSCORE 7 | 8 | audience_rating: 9 | overlay: 10 | name: text(audience_rating%) 11 | horizontal_offset: 116 12 | horizontal_align: left 13 | vertical_offset: 10 14 | vertical_align: bottom 15 | font: fonts/Inter-Medium.ttf 16 | font_size: 65 17 | font_color: "#FFFFFF" 18 | back_color: "#00000099" 19 | back_radius: 30 20 | back_width: 160 21 | back_height: 100 22 | plex_all: true 23 | -------------------------------------------------------------------------------- /overlays/TMDBSCORE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/TMDBSCORE.png -------------------------------------------------------------------------------- /overlays/TMDBrating_overlays.yml: -------------------------------------------------------------------------------- 1 | overlays: 2 | 3 | TMDBSCORE: 4 | plex_all: true 5 | overlay: 6 | name: TMDBSCORE 7 | 8 | audience_rating: 9 | overlay: 10 | name: text(audience_rating%) 11 | horizontal_offset: 120 12 | horizontal_align: left 13 | vertical_offset: 10 14 | vertical_align: bottom 15 | font: fonts/Inter-Medium.ttf 16 | font_size: 65 17 | font_color: "#FFFFFF" 18 | back_color: "#00000099" 19 | back_radius: 30 20 | back_width: 160 21 | back_height: 110 22 | plex_all: true 23 | -------------------------------------------------------------------------------- /overlays/TVDBSCORE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/TVDBSCORE.png -------------------------------------------------------------------------------- /overlays/TVDBrating_overlays.yml: -------------------------------------------------------------------------------- 1 | overlays: 2 | 3 | TVDBSCORE: 4 | plex_all: true 5 | overlay: 6 | name: TVDBSCORE 7 | 8 | audience_rating: 9 | overlay: 10 | name: text(audience_rating%) 11 | horizontal_offset: 118 12 | horizontal_align: left 13 | vertical_offset: 10 14 | vertical_align: bottom 15 | font: fonts/Inter-Medium.ttf 16 | font_size: 65 17 | font_color: "#FFFFFF" 18 | back_color: "#00000099" 19 | back_radius: 30 20 | back_width: 160 21 | back_height: 100 22 | plex_all: true 23 | -------------------------------------------------------------------------------- /overlays/images/1080P-DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/1080P-DV.png -------------------------------------------------------------------------------- /overlays/images/1080P-HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/1080P-HDR.png -------------------------------------------------------------------------------- /overlays/images/1080P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/1080P.png -------------------------------------------------------------------------------- /overlays/images/480P-DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/480P-DV.png -------------------------------------------------------------------------------- /overlays/images/480P-HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/480P-HDR.png -------------------------------------------------------------------------------- /overlays/images/480P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/480P.png -------------------------------------------------------------------------------- /overlays/images/4K-DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/4K-DV.png -------------------------------------------------------------------------------- /overlays/images/4K-HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/4K-HDR.png -------------------------------------------------------------------------------- /overlays/images/4K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/4K.png -------------------------------------------------------------------------------- /overlays/images/720P-DV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/720P-DV.png -------------------------------------------------------------------------------- /overlays/images/720P-HDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/720P-HDR.png -------------------------------------------------------------------------------- /overlays/images/720P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/720P.png -------------------------------------------------------------------------------- /overlays/images/Amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Amazon.png -------------------------------------------------------------------------------- /overlays/images/AppleTV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/AppleTV.png -------------------------------------------------------------------------------- /overlays/images/Blu-Ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Blu-Ray.png -------------------------------------------------------------------------------- /overlays/images/Criterion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Criterion.png -------------------------------------------------------------------------------- /overlays/images/DTS-ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/DTS-ES.png -------------------------------------------------------------------------------- /overlays/images/DTS-HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/DTS-HD.png -------------------------------------------------------------------------------- /overlays/images/DTS-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/DTS-X.png -------------------------------------------------------------------------------- /overlays/images/DTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/DTS.png -------------------------------------------------------------------------------- /overlays/images/DVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/DVD.png -------------------------------------------------------------------------------- /overlays/images/Direct-Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Direct-Play.png -------------------------------------------------------------------------------- /overlays/images/Disney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Disney.png -------------------------------------------------------------------------------- /overlays/images/Dolby-Atmos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Dolby-Atmos.png -------------------------------------------------------------------------------- /overlays/images/Dolby-Digital-Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Dolby-Digital-Plus.png -------------------------------------------------------------------------------- /overlays/images/Dolby-Digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Dolby-Digital.png -------------------------------------------------------------------------------- /overlays/images/Dolby-TrueHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Dolby-TrueHD.png -------------------------------------------------------------------------------- /overlays/images/Dual-Audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Dual-Audio.png -------------------------------------------------------------------------------- /overlays/images/HBO-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/HBO-Max.png -------------------------------------------------------------------------------- /overlays/images/HDTV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/HDTV.png -------------------------------------------------------------------------------- /overlays/images/Hulu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Hulu.png -------------------------------------------------------------------------------- /overlays/images/IMAX-E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/IMAX-E.png -------------------------------------------------------------------------------- /overlays/images/IMAX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/IMAX.png -------------------------------------------------------------------------------- /overlays/images/IMDB-Top-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/IMDB-Top-250.png -------------------------------------------------------------------------------- /overlays/images/IMDBSCORE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/IMDBSCORE.png -------------------------------------------------------------------------------- /overlays/images/METACRITICG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/METACRITICG.png -------------------------------------------------------------------------------- /overlays/images/METACRITICR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/METACRITICR.png -------------------------------------------------------------------------------- /overlays/images/METACRITICY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/METACRITICY.png -------------------------------------------------------------------------------- /overlays/images/Multi-Audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Multi-Audio.png -------------------------------------------------------------------------------- /overlays/images/Netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Netflix.png -------------------------------------------------------------------------------- /overlays/images/Opus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Opus.png -------------------------------------------------------------------------------- /overlays/images/Paramount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Paramount.png -------------------------------------------------------------------------------- /overlays/images/Peacock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Peacock.png -------------------------------------------------------------------------------- /overlays/images/Prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Prime.png -------------------------------------------------------------------------------- /overlays/images/Remux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/Remux.png -------------------------------------------------------------------------------- /overlays/images/TMDBSCORE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/TMDBSCORE.png -------------------------------------------------------------------------------- /overlays/images/TVDBSCORE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/TVDBSCORE.png -------------------------------------------------------------------------------- /overlays/images/WEB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/images/WEB.png -------------------------------------------------------------------------------- /overlays/imdb_top_250.yml: -------------------------------------------------------------------------------- 1 | ############################################################# 2 | # IMDb Top 250 Overlays # 3 | # Created by Yozora, Bullmoose20, & Sohjiro # 4 | # Credit to Magic815 for base images # 5 | ############################################################# 6 | # Call this from your config.yml (Movie or Show): # 7 | # overlay_path: # 8 | # - git: PMM/overlays/imdb_top_250 # 9 | ############################################################# 10 | 11 | templates: 12 | IMDbTop250: 13 | imdb_chart: top_<>s 14 | overlay: 15 | name: <> 16 | horizontal_offset: 0 17 | horizontal_align: right 18 | vertical_offset: 0 19 | vertical_align: bottom 20 | 21 | overlays: 22 | 23 | IMDB-Top-250: 24 | template: 25 | - name: IMDbTop250 26 | -------------------------------------------------------------------------------- /overlays/temp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/temp.jpg -------------------------------------------------------------------------------- /overlays/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seamonkey420/Seamonkey420s-Kometa-Config/8648f56beecad8aeff04c9560bb01ce11e8882a4/overlays/temp.png -------------------------------------------------------------------------------- /show/decades.yml: -------------------------------------------------------------------------------- 1 | ############################################################# 2 | # Dynamic Decade Collections # 3 | # Created by Yozora, Bullmoose20, & Sohjiro # 4 | ############################################################# 5 | # Call this from your config.yml (Show only) # 6 | # If nothing is specified these are the defaults # 7 | # # 8 | # metadata_path: # 9 | # - git: PMM/show/decade # 10 | # template_variables: # 11 | # # Turn the separator collection on/off # 12 | # use_separator: true # 13 | # # Sets how the collection is sorted # 14 | # sort_by: critic_rating.desc # 15 | # # Sets the collection mode of the collection # 16 | # collection_mode: # 17 | # # Sets the value at the start of the sort title # 18 | # collection_section: 12 # 19 | # # Sets the number of items per collection # 20 | # limit: 100 # 21 | ############################################################# 22 | 23 | external_templates: 24 | git: PMM/templates 25 | template_variables: 26 | collection_section: 4 27 | 28 | templates: 29 | decade_dynamic: 30 | # default: 31 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/decade/<>.jpg 32 | smart_filter: 33 | sort_by: random 34 | any: 35 | year: <> 36 | limit: 200 37 | 38 | dynamic_collections: 39 | Decade: 40 | type: decade 41 | title_format: <> 42 | template: 43 | - decade_dynamic 44 | - shared 45 | -------------------------------------------------------------------------------- /show/imdb_tmdb_top250.yml: -------------------------------------------------------------------------------- 1 | ############################################################# 2 | # Top IMDB and TMDB Collections # 3 | # Created by seamonkey420 # 4 | ############################################################# 5 | # Call this from your config.yml (Show only) # 6 | # Defaults to Top 250 # 7 | ############################################################# 8 | 9 | external_templates: 10 | git: PMM/templates 11 | template_variables: 12 | collection_section: 3 13 | 14 | templates: 15 | imdb: 16 | imdb_chart: <>_<>s 17 | collection_order: custom 18 | sync_mode: sync 19 | top: 20 | default: 21 | limit_top: 250 22 | tmdb_top_rated: <> 23 | summary: A collection of the top rated <>s according to TMDb. 24 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/chart/TMDb%20Top%20Rated.jpg 25 | 26 | collections: 27 | IMDb Top 250: 28 | template: 29 | - name: imdb 30 | chart: top 31 | - name: chart_shared 32 | key: top 33 | TMDb Top 250: 34 | template: 35 | - name: top 36 | - name: customsync 37 | - name: chart_shared 38 | key: top -------------------------------------------------------------------------------- /show/imdb_top250.yml: -------------------------------------------------------------------------------- 1 | ############################################################# 2 | # Top IMDB and TMDB Collections # 3 | # Created by seamonkey420 # 4 | ############################################################# 5 | # Call this from your config.yml (Show only) # 6 | # Defaults to Top 250 # 7 | ############################################################# 8 | 9 | external_templates: 10 | git: PMM/templates 11 | template_variables: 12 | collection_section: 3 13 | 14 | templates: 15 | imdb: 16 | imdb_chart: <>_<>s 17 | collection_order: custom 18 | sync_mode: sync 19 | 20 | collections: 21 | IMDb Top 250: 22 | template: 23 | - name: imdb 24 | chart: top 25 | - name: chart_shared 26 | key: top 27 | -------------------------------------------------------------------------------- /show/tmdb_top250.yml: -------------------------------------------------------------------------------- 1 | ############################################################# 2 | # Top IMDB and TMDB Collections # 3 | # Created by seamonkey420 # 4 | ############################################################# 5 | # Call this from your config.yml (Show only) # 6 | # Defaults to Top 250 # 7 | ############################################################# 8 | 9 | external_templates: 10 | git: PMM/templates 11 | template_variables: 12 | collection_section: 3 13 | 14 | templates: 15 | default: 16 | tmdb_top_rated: 250 17 | summary: A collection of the top rated <>s according to TMDb. 18 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/chart/TMDb%20Top%20Rated.jpg 19 | 20 | collections: 21 | TMDb Top 250: 22 | template: 23 | - name: top 24 | - name: customsync 25 | - name: chart_shared 26 | key: top -------------------------------------------------------------------------------- /templates.yml: -------------------------------------------------------------------------------- 1 | templates: 2 | 3 | separator: 4 | default: 5 | collection_section: "00" 6 | optional: 7 | - use_separator 8 | - collection_mode 9 | allowed_library_types: <> 10 | collection_mode: <> 11 | sort_title: "!<>_!<>" 12 | blank_collection: true 13 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/separators/<>.jpg 14 | 15 | separator off: 16 | default: 17 | collection_section: "00" 18 | use_separator: false 19 | optional: 20 | - collection_mode 21 | allowed_library_types: <> 22 | collection_mode: <> 23 | sort_title: "!<>_!<>" 24 | blank_collection: true 25 | url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/separators/<>.jpg 26 | 27 | shared: 28 | default: 29 | collection_section: "00" 30 | sort: <> 31 | pre: "_" 32 | order: "" 33 | optional: 34 | - collection_mode 35 | - radarr_add_missing 36 | - sonarr_add_missing 37 | radarr_add_missing: <> 38 | sonarr_add_missing: <> 39 | collection_mode: <> 40 | sort_title: "!<><
><><>"
 41 | 
 42 |   chart_shared:
 43 |     default:
 44 |       collection_section: "00"
 45 |       key: <>
 46 |       sort: <>
 47 |       pre: "_"
 48 |       order_<>: ""
 49 |     optional:
 50 |       - use_<>
 51 |       - visible_library_<>
 52 |       - visible_home_<>
 53 |       - visible_shared_<>
 54 |       - collection_mode
 55 |       - radarr_add_missing
 56 |       - sonarr_add_missing
 57 |       - radarr_tag
 58 |       - sonarr_tag
 59 |       - library_types
 60 |       - check_library
 61 |     allowed_library_types:
 62 |       - <>>>
 63 |       - <>
 64 |     visible_library: <>>>
 65 |     visible_home: <>>>
 66 |     visible_shared: <>>>
 67 |     radarr_add_missing: <>
 68 |     sonarr_add_missing: <>
 69 |     radarr_tag: <>
 70 |     sonarr_tag: <>
 71 |     collection_mode: <>
 72 |     sort_title: "!<><
><>>><>"
 73 |     url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/chart/<>.jpg
 74 | 
 75 |   other_collection:
 76 |     default:
 77 |       collection_section: "00"
 78 |       sort: <>
 79 |       pre: "_~"
 80 |     optional:
 81 |       - use_other
 82 |     allowed_library_types: <>
 83 |     sort_title: "!<><
><>"
 84 | 
 85 |   award:
 86 |     default:
 87 |       collection_order: custom
 88 |     optional:
 89 |       - image
 90 |     cache_builders: 1
 91 |     sync_mode: sync
 92 |     collection_order: <>
 93 |     url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/award/<>.jpg
 94 | 
 95 |   playlist:
 96 |     default:
 97 |       libraries: Movies, TV Shows
 98 |     cache_builders: 1
 99 |     sync_to_users: all
100 |     sync_mode: sync
101 |     libraries: <>
102 |     url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/playlist/<>.jpg
103 | 
104 |   streaming:
105 |     default:
106 |       sort_by: release.desc
107 |       key: <>
108 |     optional:
109 |       - use_<>
110 |       - visible_library_<>
111 |       - visible_home_<>
112 |       - visible_shared_<>
113 |     allowed_library_types: <>>>
114 |     visible_library: <>>>
115 |     visible_home: <>>>
116 |     visible_shared: <>>>
117 |     cache_builders: 1
118 |     smart_label: <>
119 |     sync_mode: sync
120 |     mdblist_list: https://mdblist.com/lists/plexmetamanager/<>-<>s
121 |     url_poster: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Images/master/streaming/<>.jpg
122 | 
123 |   use_year_collections:
124 |     optional:
125 |       - use_year_collections
126 |     allowed_library_types: <>
127 | 
128 |   customsync:
129 |     collection_order: custom
130 |     sync_mode: sync


--------------------------------------------------------------------------------