From 1e34f6809de0d2c2f7aa4caeb91c0b9bc99618fb Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Fri, 24 Dec 2021 12:29:52 -0500 Subject: [PATCH] Add static plex strings --- src/config.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/config.cpp b/src/config.cpp index b853a47..1d676af 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -75,8 +75,9 @@ const FONT_SIZE_STRING CONST_STRINGS[] = { //Overlay strings { "Weather", { "Roboto_Mono/RobotoMono-Medium.ttf", 50 } }, { "Wireless", { "Roboto_Mono/RobotoMono-Medium.ttf", 50 } }, + { "Plex", { "Roboto_Mono/RobotoMono-Medium.ttf", 50} }, //sample panel - { "Sample Panel", { "Roboto_Mono/RobotoMono-Medium.ttf", 50} }, + //{ "Sample Panel", { "Roboto_Mono/RobotoMono-Medium.ttf", 50} }, //Weather strings { "Clear Skies", { "Roboto_Mono/RobotoMono-Medium.ttf", 50 } }, @@ -95,5 +96,10 @@ const FONT_SIZE_STRING CONST_STRINGS[] = { { "Tommorow,", { "Roboto_Mono/RobotoMono-Medium.ttf", 50 } }, { "Day after,", { "Roboto_Mono/RobotoMono-Medium.ttf", 50 } }, + //Plex + { "Historical", {"Roboto_Mono/RobotoMono-Medium.ttf", 28} } + { "Playing", {"Roboto_Mono/RobotoMono-Medium.ttf", 28} } + { "Top Users", {"Roboto_Mono/RobotoMono-Medium.ttf", 50} } + }; size_t CONST_STRINGS_LENGTH = sizeof(CONST_STRINGS)/sizeof(CONST_STRINGS[0]);