mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 13:32:50 -05:00
295 lines
7.9 KiB
QML
295 lines
7.9 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Wayland
|
|
import qs.Common
|
|
import qs.Services
|
|
|
|
Scope {
|
|
id: root
|
|
|
|
property string sharedPasswordBuffer: ""
|
|
property bool shouldLock: false
|
|
|
|
onShouldLockChanged: {
|
|
if (shouldLock && lockPowerOffArmed) {
|
|
lockStateCheck.restart();
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: lockStateCheck
|
|
interval: 100
|
|
repeat: false
|
|
onTriggered: {
|
|
if (sessionLock.locked && lockPowerOffArmed) {
|
|
pendingLock = false;
|
|
IdleService.monitorsOff = true;
|
|
CompositorService.powerOffMonitors();
|
|
lockWakeAllowed = false;
|
|
lockWakeDebounce.restart();
|
|
lockPowerOffArmed = false;
|
|
dpmsReapplyTimer.start();
|
|
}
|
|
}
|
|
}
|
|
|
|
property bool lockInitiatedLocally: false
|
|
property bool pendingLock: false
|
|
property bool lockPowerOffArmed: false
|
|
property bool lockWakeAllowed: false
|
|
|
|
Component.onCompleted: {
|
|
IdleService.lockComponent = this;
|
|
}
|
|
|
|
function notifyLoginctl(lockAction: bool) {
|
|
if (!SettingsData.loginctlLockIntegration || !DMSService.isConnected)
|
|
return;
|
|
if (lockAction)
|
|
DMSService.lockSession(() => {});
|
|
else
|
|
DMSService.unlockSession(() => {});
|
|
}
|
|
|
|
function lock() {
|
|
if (SettingsData.customPowerActionLock?.length > 0) {
|
|
Quickshell.execDetached(["sh", "-c", SettingsData.customPowerActionLock]);
|
|
return;
|
|
}
|
|
if (shouldLock || pendingLock)
|
|
return;
|
|
|
|
lockInitiatedLocally = true;
|
|
lockPowerOffArmed = SettingsData.lockScreenPowerOffMonitorsOnLock;
|
|
|
|
if (!SessionService.active && SessionService.loginctlAvailable && SettingsData.loginctlLockIntegration) {
|
|
pendingLock = true;
|
|
notifyLoginctl(true);
|
|
return;
|
|
}
|
|
|
|
shouldLock = true;
|
|
notifyLoginctl(true);
|
|
}
|
|
|
|
function unlock() {
|
|
if (!shouldLock)
|
|
return;
|
|
lockInitiatedLocally = false;
|
|
notifyLoginctl(false);
|
|
shouldLock = false;
|
|
}
|
|
|
|
function forceReset() {
|
|
lockInitiatedLocally = false;
|
|
pendingLock = false;
|
|
shouldLock = false;
|
|
}
|
|
|
|
function activate() {
|
|
lock();
|
|
}
|
|
|
|
Connections {
|
|
target: SessionService
|
|
|
|
function onSessionLocked() {
|
|
if (shouldLock || pendingLock)
|
|
return;
|
|
if (!SessionService.active && SessionService.loginctlAvailable && SettingsData.loginctlLockIntegration) {
|
|
pendingLock = true;
|
|
lockInitiatedLocally = false;
|
|
return;
|
|
}
|
|
lockInitiatedLocally = false;
|
|
lockPowerOffArmed = SettingsData.lockScreenPowerOffMonitorsOnLock;
|
|
shouldLock = true;
|
|
}
|
|
|
|
function onSessionUnlocked() {
|
|
if (pendingLock) {
|
|
pendingLock = false;
|
|
lockInitiatedLocally = false;
|
|
return;
|
|
}
|
|
if (!shouldLock || lockInitiatedLocally)
|
|
return;
|
|
shouldLock = false;
|
|
}
|
|
|
|
function onLoginctlStateChanged() {
|
|
if (SessionService.active && pendingLock) {
|
|
pendingLock = false;
|
|
lockInitiatedLocally = true;
|
|
lockPowerOffArmed = SettingsData.lockScreenPowerOffMonitorsOnLock;
|
|
shouldLock = true;
|
|
return;
|
|
}
|
|
if (SessionService.locked && !shouldLock && !pendingLock) {
|
|
lockInitiatedLocally = false;
|
|
lockPowerOffArmed = SettingsData.lockScreenPowerOffMonitorsOnLock;
|
|
shouldLock = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: IdleService
|
|
|
|
function onLockRequested() {
|
|
lock();
|
|
}
|
|
}
|
|
|
|
WlSessionLock {
|
|
id: sessionLock
|
|
|
|
locked: shouldLock
|
|
|
|
WlSessionLockSurface {
|
|
id: lockSurface
|
|
|
|
property string currentScreenName: screen?.name ?? ""
|
|
property bool isActiveScreen: {
|
|
if (Quickshell.screens.length <= 1)
|
|
return true;
|
|
if (SettingsData.lockScreenActiveMonitor === "all")
|
|
return true;
|
|
return currentScreenName === SettingsData.lockScreenActiveMonitor;
|
|
}
|
|
|
|
color: isActiveScreen ? "transparent" : SettingsData.lockScreenInactiveColor
|
|
|
|
LockSurface {
|
|
anchors.fill: parent
|
|
visible: lockSurface.isActiveScreen
|
|
lock: sessionLock
|
|
sharedPasswordBuffer: root.sharedPasswordBuffer
|
|
screenName: lockSurface.currentScreenName
|
|
isLocked: shouldLock
|
|
onUnlockRequested: root.unlock()
|
|
onPasswordChanged: newPassword => {
|
|
root.sharedPasswordBuffer = newPassword;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: sessionLock
|
|
|
|
function onLockedChanged() {
|
|
if (sessionLock.locked) {
|
|
pendingLock = false;
|
|
if (lockPowerOffArmed && SettingsData.lockScreenPowerOffMonitorsOnLock) {
|
|
IdleService.monitorsOff = true;
|
|
CompositorService.powerOffMonitors();
|
|
lockWakeAllowed = false;
|
|
lockWakeDebounce.restart();
|
|
}
|
|
lockPowerOffArmed = false;
|
|
dpmsReapplyTimer.start();
|
|
return;
|
|
}
|
|
|
|
lockWakeAllowed = false;
|
|
if (IdleService.monitorsOff && SettingsData.lockScreenPowerOffMonitorsOnLock) {
|
|
IdleService.monitorsOff = false;
|
|
CompositorService.powerOnMonitors();
|
|
}
|
|
}
|
|
}
|
|
|
|
LockScreenDemo {
|
|
|
|
id: demoWindow
|
|
}
|
|
|
|
IpcHandler {
|
|
target: "lock"
|
|
|
|
function lock() {
|
|
root.lock();
|
|
}
|
|
|
|
function unlock() {
|
|
root.unlock();
|
|
}
|
|
|
|
function forceReset() {
|
|
root.forceReset();
|
|
}
|
|
|
|
function demo() {
|
|
demoWindow.showDemo();
|
|
}
|
|
|
|
function isLocked(): bool {
|
|
return sessionLock.locked;
|
|
}
|
|
|
|
function status(): string {
|
|
return JSON.stringify({
|
|
shouldLock: root.shouldLock,
|
|
sessionLockLocked: sessionLock.locked,
|
|
lockInitiatedLocally: root.lockInitiatedLocally,
|
|
pendingLock: root.pendingLock,
|
|
loginctlLocked: SessionService.locked,
|
|
loginctlActive: SessionService.active
|
|
});
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: dpmsReapplyTimer
|
|
interval: 100
|
|
repeat: false
|
|
onTriggered: IdleService.reapplyDpmsIfNeeded()
|
|
}
|
|
|
|
Timer {
|
|
id: lockWakeDebounce
|
|
interval: 200
|
|
repeat: false
|
|
onTriggered: {
|
|
if (!sessionLock.locked)
|
|
return;
|
|
if (!SettingsData.lockScreenPowerOffMonitorsOnLock)
|
|
return;
|
|
if (!IdleService.monitorsOff) {
|
|
lockWakeAllowed = true;
|
|
return;
|
|
}
|
|
if (lockWakeAllowed) {
|
|
IdleService.monitorsOff = false;
|
|
CompositorService.powerOnMonitors();
|
|
} else {
|
|
lockWakeAllowed = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
enabled: sessionLock.locked
|
|
hoverEnabled: enabled
|
|
onPressed: lockWakeDebounce.restart()
|
|
onPositionChanged: lockWakeDebounce.restart()
|
|
onWheel: lockWakeDebounce.restart()
|
|
}
|
|
|
|
FocusScope {
|
|
anchors.fill: parent
|
|
focus: sessionLock.locked
|
|
|
|
Keys.onPressed: event => {
|
|
if (!sessionLock.locked)
|
|
return;
|
|
lockWakeDebounce.restart();
|
|
}
|
|
}
|
|
}
|