mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
157 lines
4.4 KiB
QML
157 lines
4.4 KiB
QML
pragma ComponentBehavior: Bound
|
|
import qs
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Wayland
|
|
import Quickshell.Hyprland
|
|
|
|
Scope {
|
|
id: root
|
|
|
|
required property Component lockSurface
|
|
property alias context: lockContext
|
|
property Component sessionLockSurface: WlSessionLockSurface {
|
|
id: sessionLockSurface
|
|
color: "transparent"
|
|
Loader {
|
|
active: GlobalStates.screenLocked
|
|
anchors.fill: parent
|
|
opacity: active ? 1 : 0
|
|
Behavior on opacity {
|
|
animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this)
|
|
}
|
|
sourceComponent: root.lockSurface
|
|
}
|
|
}
|
|
|
|
Process {
|
|
id: unlockKeyringProc
|
|
onExited: (exitCode, exitStatus) => {
|
|
KeyringStorage.fetchKeyringData();
|
|
}
|
|
}
|
|
function unlockKeyring() {
|
|
unlockKeyringProc.exec({
|
|
environment: ({
|
|
"UNLOCK_PASSWORD": lockContext.currentText
|
|
}),
|
|
command: ["bash", "-c", Quickshell.shellPath("scripts/keyring/unlock.sh")]
|
|
})
|
|
}
|
|
|
|
// This stores all the information shared between the lock surfaces on each screen.
|
|
// https://github.com/quickshell-mirror/quickshell-examples/tree/master/lockscreen
|
|
LockContext {
|
|
id: lockContext
|
|
|
|
Connections {
|
|
target: GlobalStates
|
|
function onScreenLockedChanged() {
|
|
if (GlobalStates.screenLocked) {
|
|
lockContext.reset();
|
|
lockContext.tryFingerUnlock();
|
|
}
|
|
}
|
|
}
|
|
|
|
onUnlocked: (targetAction) => {
|
|
// Perform the target action if it's not just unlocking
|
|
if (targetAction == LockContext.ActionEnum.Poweroff) {
|
|
Session.poweroff();
|
|
return;
|
|
} else if (targetAction == LockContext.ActionEnum.Reboot) {
|
|
Session.reboot();
|
|
return;
|
|
}
|
|
|
|
// Unlock the keyring if configured to do so
|
|
if (Config.options.lock.security.unlockKeyring) root.unlockKeyring(); // Async
|
|
|
|
// Unlock the screen before exiting, or the compositor will display a
|
|
// fallback lock you can't interact with.
|
|
GlobalStates.screenLocked = false;
|
|
|
|
// Refocus last focused window on unlock (hack)
|
|
Quickshell.execDetached(["bash", "-c", `sleep 0.2; hyprctl --batch "dispatch togglespecialworkspace; dispatch togglespecialworkspace"`])
|
|
|
|
// Reset
|
|
lockContext.reset();
|
|
|
|
// Post-unlock actions
|
|
if (lockContext.alsoInhibitIdle) {
|
|
lockContext.alsoInhibitIdle = false;
|
|
Idle.toggleInhibit(true);
|
|
}
|
|
}
|
|
}
|
|
|
|
WlSessionLock {
|
|
id: lock
|
|
locked: GlobalStates.screenLocked
|
|
surface: root.sessionLockSurface
|
|
}
|
|
|
|
function lock() {
|
|
if (Config.options.lock.useHyprlock) {
|
|
Quickshell.execDetached(["bash", "-c", "pidof hyprlock || hyprlock"]);
|
|
return;
|
|
}
|
|
GlobalStates.screenLocked = true;
|
|
}
|
|
|
|
IpcHandler {
|
|
target: "lock"
|
|
|
|
function activate(): void {
|
|
root.lock();
|
|
}
|
|
function focus(): void {
|
|
lockContext.shouldReFocus();
|
|
}
|
|
}
|
|
|
|
GlobalShortcut {
|
|
name: "lock"
|
|
description: "Locks the screen"
|
|
|
|
onPressed: {
|
|
root.lock()
|
|
}
|
|
}
|
|
|
|
GlobalShortcut {
|
|
name: "lockFocus"
|
|
description: "Re-focuses the lock screen. This is because Hyprland after waking up for whatever reason"
|
|
+ "decides to keyboard-unfocus the lock screen"
|
|
|
|
onPressed: {
|
|
lockContext.shouldReFocus();
|
|
}
|
|
}
|
|
|
|
function initIfReady() {
|
|
if (!Config.ready || !Persistent.ready) return;
|
|
if (Config.options.lock.launchOnStartup && Persistent.isNewHyprlandInstance) {
|
|
root.lock();
|
|
} else {
|
|
KeyringStorage.fetchKeyringData();
|
|
}
|
|
}
|
|
Connections {
|
|
target: Config
|
|
function onReadyChanged() {
|
|
root.initIfReady();
|
|
}
|
|
}
|
|
Connections {
|
|
target: Persistent
|
|
function onReadyChanged() {
|
|
root.initIfReady();
|
|
}
|
|
}
|
|
}
|