nova-shell/modules/Wlogout.qml
2026-04-12 00:56:17 +02:00

19 lines
319 B
QML

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