Merge branch 'main' of github.com:noctalia-dev/noctalia-shell

This commit is contained in:
LemmyCook 2025-08-26 12:21:49 -04:00
commit 8148c0fa29
9 changed files with 467 additions and 12 deletions

View file

@ -130,7 +130,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"]
}
}
@ -257,6 +257,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
}
}
}
}