quickshell/bar/Pill.qml
2025-09-09 12:03:05 +02:00

25 lines
486 B
QML

import QtQuick
import QtQuick.Shapes
import QtQuick.Layouts
Rectangle {
id: pill
default property alias content: container.data
// Center in the middle of the bar
anchors.verticalCenter: parent.verticalCenter
implicitWidth: container.childrenRect.width + 15
implicitHeight: container.childrenRect.height + 12
color: "#939ab7"
radius: 18
Loader {
id: container
width: childrenRect.width
height: childrenRect.height
anchors.centerIn: parent
}
}