import QtQuick import Quickshell.Io import "." as M Text { text: "" color: M.Theme.base05 font.pixelSize: M.Theme.fontSize + 2 font.family: M.Theme.fontFamily verticalAlignment: Text.AlignVCenter Process { id: proc; command: ["wlogout"] } MouseArea { anchors.fill: parent cursorShape: Qt.PointingHandCursor onClicked: proc.running = true } }