This commit is contained in:
müde 2026-03-15 23:25:33 +01:00
parent c7e8c1a9f5
commit 269a336f50
6 changed files with 194 additions and 0 deletions

View file

@ -0,0 +1,77 @@
import QtQuick
import QtQuick.Controls
import Quickshell
PanelWindow {
anchors {
top: true
left: true
right: true
}
//implicitHeight: 24
color: "transparent"
Item {
anchors {
leftMargin: 8
rightMargin: 8
fill: parent
}
// left
Pill {
anchors.left: parent.left
Label {
text: "TODO: Niri Workspaces"
}
Label {
text: "TODO: System Tray"
}
Label {
text: "TODO: Niri Active Window"
}
}
// center
Pill {
anchors.horizontalCenter: parent.horizontalCenter
pillAccentColor: Theme.colors.accent0
Clock {
time: Time.currentTime
}
Label {
text: "swaync"
}
Label {
text: "Privacy"
}
}
// right
Pill {
anchors.right: parent.right
Label {
text: "TODO: MPRIS"
}
Label {
text: "TODO: Vol/BT/Net"
}
Label {
text: "TODO: Hardware/Bat"
}
RoundButton {
text: ""
// textColor: "red"
onClicked: console.log("TODO: Execute wlogout")
}
}
}
}