fixed stuff

This commit is contained in:
Honney
2026-06-01 13:01:17 +02:00
parent 5ed13c2eec
commit 20f44d8e2b
3 changed files with 0 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
import QtQuick
import Quickshell.Io
QtObject {
required property string command
required property string text
required property string icon
required property string icon_text
property var keybind: null
id: button
readonly property var process: Process {
command: ["sh", "-c", button.command]
}
function exec() {
process.startDetached();
console.log("Picked Logout Option, closing WLogout");
wlogoutLoader.active = false;
}
}