add start and search icons

This commit is contained in:
end-4
2025-11-10 22:48:04 +01:00
parent 42919c59ec
commit 694eaccfbf
12 changed files with 308 additions and 9 deletions
@@ -21,14 +21,28 @@ Rectangle {
implicitHeight: 1
}
BarGroupRow {
id: bloatRow
anchors.left: parent.left
}
BarGroupRow {
id: appsRow
spacing: 4
anchors.left: undefined
anchors.horizontalCenter: parent.horizontalCenter
states: State {
name: "left"
when: Config.options.waffles.bar.leftAlignApps
AnchorChanges {
target: appsRow
anchors.left: parent.left
anchors.horizontalCenter: undefined
}
}
transitions: Transition {
animations: Looks.transition.anchor.createObject(this)
}
StartButton {}
SearchButton {}
}
BarGroupRow {