C++ / fmt (pull_request) Successful in 3s
JS/TS / fmt (pull_request) Successful in 17s
JS/TS / lint (pull_request) Successful in 20s
Python / fmt (pull_request) Successful in 31s
Python / lint (pull_request) Successful in 30s
Python / test (pull_request) Successful in 1m40s
Python / typecheck (pull_request) Successful in 1m38s
C++ / build (pull_request) Successful in 2m15s
Rust / build (pull_request) Successful in 1m41s
Rust / fmt (pull_request) Successful in 59s
Python / buildcheck (pull_request) Successful in 2m40s
Rust / clippy (pull_request) Successful in 2m15s
C++ / clang-tidy (pull_request) Successful in 6m29s
94 lines
2.7 KiB
QML
94 lines
2.7 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import Quickshell
|
|
import QtQuick.Layouts
|
|
import ZShell.Config
|
|
import ZShell.Services
|
|
import qs.Services
|
|
import qs.Modules.Bar.Components.Common
|
|
import qs.Components
|
|
|
|
WidgetBase {
|
|
id: root
|
|
|
|
required property PersistentProperties visibilities
|
|
|
|
clip: true
|
|
color: visibilities.resources ? Colors.palette.m3primary : Colors.tPalette.m3surfaceContainer
|
|
implicitHeight: horizontal ? baseSize : gridLayout.implicitHeight + Tokens.padding.normal * 2
|
|
implicitWidth: horizontal ? gridLayout.implicitWidth + Tokens.padding.larger * 2 : baseSize
|
|
radius: Tokens.rounding.full
|
|
|
|
StateLayer {
|
|
color: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
|
|
|
onClicked: root.visibilities.resources = !root.visibilities.resources
|
|
}
|
|
|
|
GridLayout {
|
|
id: gridLayout
|
|
|
|
anchors.centerIn: parent
|
|
anchors.horizontalCenterOffset: root.horizontal ? 0 : 1
|
|
anchors.verticalCenterOffset: root.horizontal ? 0 : -3
|
|
columnSpacing: Tokens.spacing.smaller
|
|
columns: root.horizontal ? -1 : 1
|
|
|
|
ServiceRef {
|
|
service: Gpu
|
|
}
|
|
|
|
ServiceRef {
|
|
service: Cpu
|
|
}
|
|
|
|
ServiceRef {
|
|
service: Memory
|
|
}
|
|
|
|
Resource {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
Layout.fillHeight: root.horizontal
|
|
Layout.fillWidth: !root.horizontal
|
|
horizontal: root.horizontal
|
|
icon: "memory"
|
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3primary
|
|
percentage: Cpu.percentage
|
|
warningThreshold: 95
|
|
}
|
|
|
|
Resource {
|
|
Layout.fillHeight: root.horizontal
|
|
Layout.fillWidth: !root.horizontal
|
|
horizontal: root.horizontal
|
|
icon: "memory_alt"
|
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3secondary
|
|
percentage: Memory.percentage
|
|
warningThreshold: 80
|
|
}
|
|
|
|
Resource {
|
|
Layout.fillHeight: root.horizontal
|
|
Layout.fillWidth: !root.horizontal
|
|
horizontal: root.horizontal
|
|
icon: "gamepad"
|
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3tertiary
|
|
percentage: Gpu.percentage
|
|
}
|
|
|
|
Resource {
|
|
Layout.fillHeight: root.horizontal
|
|
Layout.fillWidth: !root.horizontal
|
|
horizontal: root.horizontal
|
|
icon: "developer_board"
|
|
iconColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3onSurface
|
|
mainColor: root.visibilities.resources ? Colors.palette.m3onPrimary : Colors.palette.m3primary
|
|
percentage: Gpu.memoryUsed / Gpu.memoryTotal
|
|
}
|
|
}
|
|
}
|