Advance Wayland and KDE package bring-up

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-04-14 10:51:06 +01:00
parent 51f3c21121
commit cf12defd28
15214 changed files with 20594243 additions and 269 deletions
@@ -0,0 +1,59 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import org.kde.kirigami as Kirigami
Item {
width: 600
height: 600
Kirigami.Card {
width: 300
anchors.centerIn: parent
banner.title: "Card"
banner.titleIcon: "document-new"
banner.titleAlignment: alignCombo.currentValue
banner.source: "/usr/share/wallpapers/Next/contents/screenshot.png"
contentItem: Label {
text: "Card Contents"
}
actions: [
Kirigami.Action {
icon.name: "document-new"
text: "Action 1"
},
Kirigami.Action {
icon.name: "document-new"
text: "Action 2"
}
]
}
RowLayout {
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
ComboBox {
id: alignCombo
model: [
{ text: "Top Left", align: Qt.AlignLeft | Qt.AlignTop },
{ text: "Top Center", align: Qt.AlignHCenter | Qt.AlignTop },
{ text: "Top Right", align: Qt.AlignRight | Qt.AlignTop },
{ text: "Center Left", align: Qt.AlignLeft | Qt.AlignVCenter },
{ text: "Center", align: Qt.AlignHCenter | Qt.AlignVCenter },
{ text: "Center Right", align: Qt.AlignRight | Qt.AlignVCenter },
{ text: "Bottom Left", align: Qt.AlignLeft | Qt.AlignBottom },
{ text: "Bottom Center", align: Qt.AlignHCenter | Qt.AlignBottom },
{ text: "Bottom Right", align: Qt.AlignRight | Qt.AlignBottom }
]
textRole: "text"
valueRole: "align"
}
}
}