pragma ComponentBehavior: Bound import QtQuick import Quickshell import QtQuick.Layouts import qs.Helpers import qs.Modules import qs.Config import qs.Components Item { id: root required property PersistentProperties visibilities anchors.bottom: parent.bottom anchors.top: parent.top clip: true implicitWidth: rowLayout.implicitWidth + Appearance.padding.small * 2 CustomRect { id: backgroundRect color: DynamicColors.tPalette.m3surfaceContainer implicitHeight: root.parent.height - ((Appearance.padding.small - 1) * 2) radius: height / 2 anchors { left: parent.left right: parent.right verticalCenter: parent.verticalCenter } StateLayer { onClicked: root.visibilities.resources = !root.visibilities.resources } } RowLayout { id: rowLayout anchors.centerIn: parent spacing: 0 Ref { service: SystemUsage } Resource { Layout.alignment: Qt.AlignVCenter icon: "memory" mainColor: DynamicColors.palette.m3primary percentage: SystemUsage.cpuPerc warningThreshold: 95 } Resource { icon: "memory_alt" mainColor: DynamicColors.palette.m3secondary percentage: SystemUsage.memPerc warningThreshold: 80 } Resource { icon: "gamepad" mainColor: DynamicColors.palette.m3tertiary percentage: SystemUsage.gpuPerc } Resource { icon: "developer_board" mainColor: DynamicColors.palette.m3primary percentage: SystemUsage.gpuMemUsed } } }