initial commit

This commit is contained in:
Damocles 2026-04-10 10:49:48 +02:00
commit 9fde6d4fc6
27 changed files with 1110 additions and 0 deletions

19
modules/Wlogout.qml Normal file
View file

@ -0,0 +1,19 @@
import QtQuick
import Quickshell.Io
import "." as M
Text {
text: ""
color: M.Theme.base05
font.pixelSize: M.Theme.fontSize + 2
font.family: M.Theme.fontFamily
verticalAlignment: Text.AlignVCenter
Process { id: proc; command: ["wlogout"] }
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: proc.running = true
}
}