Add NightLight, update README, format

This commit is contained in:
Ly-sec 2025-08-26 18:19:35 +02:00
parent 71cfbc8c0a
commit 634d78456d
11 changed files with 471 additions and 22 deletions

View file

@ -129,7 +129,7 @@ Singleton {
widgets: JsonObject {
property list<string> left: ["SystemMonitor", "ActiveWindow", "MediaMini"]
property list<string> center: ["Workspace"]
property list<string> right: ["ScreenRecorderIndicator", "Tray", "NotificationHistory", "WiFi", "Bluetooth", "Battery", "Volume", "Brightness", "Clock", "SidePanelToggle"]
property list<string> right: ["ScreenRecorderIndicator", "Tray", "NotificationHistory", "WiFi", "Bluetooth", "Battery", "Volume", "Brightness", "NightLight", "Clock", "SidePanelToggle"]
}
}
@ -256,6 +256,16 @@ Singleton {
// External app theming (GTK & Qt)
property bool themeApps: false
}
// night light
property JsonObject nightLight: JsonObject {
property bool enabled: false
property real warmth: 0.0
property real intensity: 0.8
property string startTime: "20:00"
property string stopTime: "07:00"
property bool autoSchedule: false
}
}
}
}