15 lines
291 B
QML
15 lines
291 B
QML
|
|
import QtQuick
|
|
import Quickshell
|
|
import qs.config
|
|
import qs.custom
|
|
|
|
CustomRect {
|
|
color: Config.colors.container
|
|
|
|
implicitWidth: Math.max(childrenRect.width, height)
|
|
implicitHeight: Config.bar.containerHeight
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
radius: 1000
|
|
}
|