From a9f50f1b513b2aed54ea87f13a8e5673a4449b87 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Thu, 9 Jul 2020 07:04:22 +0200 Subject: [PATCH] [core/config] add "core" config section move theme and modules into a "core" config section --- bumblebee_status/core/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bumblebee_status/core/config.py b/bumblebee_status/core/config.py index 353d42d..0a47f93 100644 --- a/bumblebee_status/core/config.py +++ b/bumblebee_status/core/config.py @@ -225,6 +225,10 @@ class Config(util.store.Store): if tmp.has_section("module-parameters"): for key, value in tmp.items("module-parameters"): self.set(key, value) + if tmp.has_section("core"): + for key, value in tmp.items("core"): + self.set(key, value) + """Returns a list of configured modules