diff --git a/src/components/widgets/resources/cpu.jsx b/src/components/widgets/resources/cpu.jsx index 36bda7435..541f1a421 100644 --- a/src/components/widgets/resources/cpu.jsx +++ b/src/components/widgets/resources/cpu.jsx @@ -35,9 +35,11 @@ export default function Cpu() {
- {Math.round(data.cpu.usage)}% Usage - {(Math.round(data.cpu.load * 100) / 100).toFixed(1)} Load + {`${Math.round(data.cpu.usage)}%`.padEnd(3, " ")} Usage + + + {`${(Math.round(data.cpu.load * 100) / 100).toFixed(1)}`.padEnd(3, " ")} Load