From 2d1a3db3e28ce8501793d0f2c8faffc344fb5ecc Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Thu, 23 Dec 2021 14:19:11 -0500 Subject: [PATCH] update config to use new plex panel --- src/config.cpp | 1 + src/config.def.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/config.cpp b/src/config.cpp index a60a122..c98d03a 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -10,6 +10,7 @@ // A list of all panels to be displayed, in order dashboard::panel::panel* PANELS[] = { //new dashboard::panel::sample_panel(), + new dashboard::panel::plex(), new dashboard::panel::weather(), new dashboard::panel::wifi(), }; diff --git a/src/config.def.hpp b/src/config.def.hpp index 2a6b02b..4f17fd0 100644 --- a/src/config.def.hpp +++ b/src/config.def.hpp @@ -78,6 +78,7 @@ constexpr int IMG_FLAGS = 0 #include "panel/weather.hpp" #include "panel/def_overlay.hpp" #include "panel/wifi.hpp" +#include "panel/plex.hpp" //uncomment this to use the sample panel //#include "panel/sample_panel.hpp" extern dashboard::panel::panel* PANELS[];