Added PowerOff button with wlogout

This commit is contained in:
Hannes
2026-02-12 21:40:13 +01:00
parent d48dae38cf
commit a02ed79a92
4 changed files with 61 additions and 6 deletions
+1
View File
@@ -70,6 +70,7 @@ PanelWindow {
spacing: 8
// TODO: Add bluetooth, network, audio, power, maybe HW monitor
PowerButton {}
}
+47
View File
@@ -0,0 +1,47 @@
import QtQuick
import Quickshell
import Quickshell.Hyprland
import Quickshell.Io
MouseArea {
id: archButton
width: 30
height: 28
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
Rectangle {
anchors.fill: parent
color: archButton.containsMouse ? "#2a2a2a" : "transparent"
radius: 6
Item {
anchors.fill: parent
Process {
id: powerOff
command: ["wlogout", "-b", "2"]
stdout: StdioCollector {
onStreamFinished: console.log(`line read: ${this.text}`)
}
}
MouseArea {
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
onClicked: {
console.log("Running PowerOff Menu")
powerOff.startDetached()
}
}
}
Text {
anchors.centerIn: parent
text: ""
font.pixelSize: 26
font.family: "Nerd Font"
color: "#ffffff"
}
}
}