19 lines
319 B
QML
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
|
|
}
|
|
}
|