nova-shell/modules/Wlogout.qml
2026-04-11 00:35:37 +02:00

18 lines
281 B
QML

import QtQuick
import Quickshell.Io
import "." as M
M.BarIcon {
icon: ""
Process {
id: proc
command: ["wlogout"]
}
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: proc.running = true
}
}