From 9481df90ea9932d7a11b0082118d446472748de4 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Wed, 7 Dec 2022 16:05:03 +0100 Subject: [PATCH] [Newm] Fix energy settings --- .config/newm/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/newm/config.py b/.config/newm/config.py index 133d3ad..fae2a1c 100644 --- a/.config/newm/config.py +++ b/.config/newm/config.py @@ -129,9 +129,6 @@ view = { } -energy = {"idle_times": [5 * 60, 30 * 60, 24 * 60 * 60]} - - leader: str = "L-Spc " @@ -405,4 +402,7 @@ panels = { }, } -energy = {"idle_callback": backlight_manager.callback} +energy = { + "idle_callback": backlight_manager.callback, + "idle_times": [5 * 60, 30 * 60, 24 * 60 * 60], +}