initial commit

This commit is contained in:
Bloxx12 2025-05-03 13:04:07 +02:00
commit 35524b5e6e
7 changed files with 412 additions and 0 deletions

37
Bar.qml Normal file
View file

@ -0,0 +1,37 @@
pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Layouts
import Quickshell
PanelWindow {
id: root
color: "transparent"
anchors {
top: true
bottom: true
right: true
}
width: 60
ColumnLayout {
// anchors.fill: parent
anchors.margins: 2
spacing: 2
anchors {
left: parent.left
right: parent.right
top: parent.top
margins: 2
}
ClockWidget {}
WorkspaceWidget {
bar: root
}
// SysTray {
// bar: root
// }
}
}