From 6e55c1d3e54696df85ceff8ac458c3b310359314 Mon Sep 17 00:00:00 2001 From: Janis Date: Wed, 11 Jan 2023 13:01:02 +0100 Subject: [PATCH] added comments to config --- config.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config.js b/config.js index 89fdd1d..6cfccae 100644 --- a/config.js +++ b/config.js @@ -1,5 +1,7 @@ const CONFIG = { - remoteAppPort: 5899, + remoteAppPort: 5899, // The port the TS5 client uses for remote apps (TS client -> settings/Remote Apps/Port) + + // Style of the overlay style: { fontBackground: "rgba(19, 20, 33, 0.5)", fontColor: "#ffffff", @@ -7,6 +9,6 @@ const CONFIG = { fontStrokeSize: "3px", fontStrokeColor: "#000000", }, - hideSelf: false, - hideSilent: false, + hideSelf: false, // Hide yourself in the overlay + hideSilent: false, // Only show talking people };