1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
69d5b7b480
activate-linux: use implicit size 2025-05-14 02:56:24 -07:00
bbb03fdd79
wlogout: fix breakages 2025-05-14 02:55:38 -07:00
3 changed files with 4 additions and 5 deletions

View file

@ -24,8 +24,8 @@ ShellRoot {
bottom: 50
}
width: content.width
height: content.height
implicitWidth: content.width
implicitHeight: content.height
color: "transparent"

View file

@ -11,11 +11,10 @@ QtObject {
readonly property var process: Process {
command: ["sh", "-c", button.command]
manageLifetime: false
}
function exec() {
process.running = true;
process.startDetached();
Qt.quit();
}
}

View file

@ -4,7 +4,7 @@ import Quickshell
ShellRoot {
WLogout {
LogoutButton {
command: "loginctl lock-screen"
command: "loginctl lock-session"
keybind: Qt.Key_K
text: "Lock"
icon: "lock"