lock screen: ext-session-lock-v1 with PAM auth and logind integration

This commit is contained in:
Damocles 2026-04-17 12:38:31 +02:00
parent 1f3cb60934
commit 4f59bc4ce4
10 changed files with 522 additions and 3 deletions

View file

@ -92,13 +92,16 @@ QtObject {
property var overviewBackdrop: ({
enable: true
})
property var lock: ({
enable: true
})
property var statsDaemon: ({
interval: -1
})
// All module keys that have an enable flag used to default-enable anything
// not explicitly mentioned in modules.json
readonly property var _moduleKeys: ["workspaces", "tray", "windowTitle", "clock", "notifications", "mpris", "volume", "bluetooth", "backlight", "network", "powerProfile", "idleInhibitor", "weather", "temperature", "gpu", "cpu", "memory", "disk", "battery", "privacy", "screenCorners", "power", "backgroundOverlay", "overviewBackdrop"]
readonly property var _moduleKeys: ["workspaces", "tray", "windowTitle", "clock", "notifications", "mpris", "volume", "bluetooth", "backlight", "network", "powerProfile", "idleInhibitor", "weather", "temperature", "gpu", "cpu", "memory", "disk", "battery", "privacy", "screenCorners", "power", "backgroundOverlay", "overviewBackdrop", "lock"]
// Fallback: if modules.json doesn't exist, enable everything
Component.onCompleted: _apply("{}")