From db9c98b322038f1577aa208de822e2d2dd50b3cf Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Mon, 1 Jun 2026 21:03:59 +0200 Subject: [PATCH] set default enabled for laptops, disabled for non battery devices --- Config/LockConf.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Config/LockConf.qml b/Config/LockConf.qml index 874131b..88ad57c 100644 --- a/Config/LockConf.qml +++ b/Config/LockConf.qml @@ -1,10 +1,11 @@ import Quickshell.Io +import Quickshell.Services.UPower JsonObject { property int blurAmount: 40 property bool enableFprint: true property int maxFprintTries: 3 - property bool lidWatch: true + property bool lidWatch: UPower.displayDevice.isLaptopBattery property bool recolorLogo: false property bool showNotifContent: false property bool showNotifIcon: true