diff --git a/docs/files/dynamic.md b/docs/files/dynamic.md index 18aa89bf..7bf20621 100644 --- a/docs/files/dynamic.md +++ b/docs/files/dynamic.md @@ -71,14 +71,6 @@ A `key_name` is the name that replaces `<>` in `title_format` to creat An example of some keys and their names that would be generated from a `tmdb_collection` dynamic collection are: -* `key`: "10" - - * `key_name`: Star Wars Collection - -* `key`: "1241" - - * `key_name`: Harry Potter Collection - | `key` | `key_name` | |:------|:------------------------| | 10 | Star Wars Collection | diff --git a/docs/kometa/install/files.md b/docs/kometa/install/files.md index b0649095..a528087e 100644 --- a/docs/kometa/install/files.md +++ b/docs/kometa/install/files.md @@ -20,7 +20,46 @@ One thing that seems like a bit of an exception are the [defaults](../../default There are defaults that create collections, overlays, and playlists. There are no default metadata files. -However, like the rest of the [external files](../../config/file_types.md), these default references cannot be moved out of the `config.yml` file. +The defaults are referenced in the `config.yml` under a library with the `default` file type: + +```yaml +libraries: + Movies: + collection_files: + - default: imdb + - default: genre + overlay_files: + - default: resolution + - default: ribbon +``` + +Typically, the defaults can be customized with template variables: + +```yaml +libraries: + Movies: + collection_files: + - default: imdb + template_variables: + use_lowest: false + - default: genre + template_variables: + sep_style: red + overlay_files: + - default: resolution + template_variables: + use_576p: false + use_480p: false + - default: ribbon + template_variables: + style: black + weight_metacritic: 35 + use_common: false +``` + +The specifics of what template variables are available for a given default are found on the wiki page for each default, which you can find starting [here](../../defaults/guide.md). + +Like the rest of the [external files](../../config/file_types.md), these default references cannot be moved out of the `config.yml` file. ???+ tip