From 41d1a4e7071372f7c842c4aabe28e9e3759a0372 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Fri, 10 Apr 2026 00:18:49 -0400 Subject: [PATCH] Complete settings helptext --- src/pkjs/customClay.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pkjs/customClay.js b/src/pkjs/customClay.js index a2fcc4f..9851d9c 100644 --- a/src/pkjs/customClay.js +++ b/src/pkjs/customClay.js @@ -7,11 +7,11 @@ module.exports = function (minified) { function toggleHelptext() { if (this.get()) { clayConfig.getItemById('helptext_host').set("Examples:
https://jellyfin.example.com
http://192.168.1.10:8096"); - clayConfig.getItemById('helptext_api_key').set("1. Log into web UI as admin
2. Go to your \"Dashboard\"
4. Select \"API Keys\" from the left menu
5. Create a key with \"New API Key\"; name it whatever you like and enter the key (not the name) in this box

They key will look like this:
d7f4c2e8a4b3444bb5d6b685fa5918b6"); + clayConfig.getItemById('helptext_api_key').set("1. Log into Jellyfin web UI as an admin
2. Go to your \"Dashboard\"
3. Select \"API Keys\" from the left menu
4. Create a key with \"New API Key\"; name it whatever you like and enter the key (not the name) in this box

The key will look like this:
d7f4c2e8a4b3444bb5d6b685fa5918b6"); clayConfig.getItemById('helptext_user').set("Enter Jellyfin username to track;
this is used in case multiple users were active when you fell asleep") } else { - clayConfig.getItemById('helptext_host').set("Examples:
https://plex.example.com
http://192.168.1.10:8096"); - clayConfig.getItemById('helptext_api_key').set("TODO Plex help"); + clayConfig.getItemById('helptext_host').set("IMPORTANT:
Plex support requires installing Tautulli alongside Plex.
Enter the URL to your Tautulli instance, not Plex itself.

Examples:
https://tautulli.example.com
http://192.168.1.10:8181"); + clayConfig.getItemById('helptext_api_key').set("1. Log into your Tautulli web UI (after initial configuration)
2. Go to settings
3. Select \"Web Interface\" from the left menu
4. At the bottom, ensure \"Enable API\" is checked
5. Reveal your API key; this is what goes in this box

The key will look like this:
9cb7053181cf4c8d807640f8c6a93b20"); clayConfig.getItemById('helptext_user').set("Enter Plex username to track;
this is used in case multiple users were active when you fell asleep") } }