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

18 lines
284 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
}
}