diff --git a/quickshell/Modules/DankBar/Widgets/CpuMonitor.qml b/quickshell/Modules/DankBar/Widgets/CpuMonitor.qml index 3ad30530..5cf76fb2 100644 --- a/quickshell/Modules/DankBar/Widgets/CpuMonitor.qml +++ b/quickshell/Modules/DankBar/Widgets/CpuMonitor.qml @@ -99,13 +99,6 @@ BasePill { width: implicitWidth height: implicitHeight - Behavior on width { - NumberAnimation { - duration: Theme.shortDuration - easing.type: Easing.OutCubic - } - } - StyledTextMetrics { id: cpuBaseline font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale) diff --git a/quickshell/Modules/DankBar/Widgets/CpuTemperature.qml b/quickshell/Modules/DankBar/Widgets/CpuTemperature.qml index 96242a9e..7bbfdb3f 100644 --- a/quickshell/Modules/DankBar/Widgets/CpuTemperature.qml +++ b/quickshell/Modules/DankBar/Widgets/CpuTemperature.qml @@ -99,13 +99,6 @@ BasePill { width: implicitWidth height: implicitHeight - Behavior on width { - NumberAnimation { - duration: Theme.shortDuration - easing.type: Easing.OutCubic - } - } - StyledTextMetrics { id: tempBaseline font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale) diff --git a/quickshell/Modules/DankBar/Widgets/DiskUsage.qml b/quickshell/Modules/DankBar/Widgets/DiskUsage.qml index 45bf25ac..e8c1c39a 100644 --- a/quickshell/Modules/DankBar/Widgets/DiskUsage.qml +++ b/quickshell/Modules/DankBar/Widgets/DiskUsage.qml @@ -193,13 +193,6 @@ BasePill { } width: Math.max(diskBaseline.width, paintedWidth) - - Behavior on width { - NumberAnimation { - duration: 120 - easing.type: Easing.OutCubic - } - } } } } diff --git a/quickshell/Modules/DankBar/Widgets/GpuTemperature.qml b/quickshell/Modules/DankBar/Widgets/GpuTemperature.qml index 826c3581..68f89bc2 100644 --- a/quickshell/Modules/DankBar/Widgets/GpuTemperature.qml +++ b/quickshell/Modules/DankBar/Widgets/GpuTemperature.qml @@ -167,13 +167,6 @@ BasePill { width: implicitWidth height: implicitHeight - Behavior on width { - NumberAnimation { - duration: Theme.shortDuration - easing.type: Easing.OutCubic - } - } - StyledTextMetrics { id: gpuTempBaseline font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale) diff --git a/quickshell/Modules/DankBar/Widgets/NetworkMonitor.qml b/quickshell/Modules/DankBar/Widgets/NetworkMonitor.qml index 300a9fc4..066a825e 100644 --- a/quickshell/Modules/DankBar/Widgets/NetworkMonitor.qml +++ b/quickshell/Modules/DankBar/Widgets/NetworkMonitor.qml @@ -110,13 +110,6 @@ BasePill { } width: Math.max(rxBaseline.width, paintedWidth) - - Behavior on width { - NumberAnimation { - duration: 120 - easing.type: Easing.OutCubic - } - } } } @@ -146,13 +139,6 @@ BasePill { } width: Math.max(txBaseline.width, paintedWidth) - - Behavior on width { - NumberAnimation { - duration: 120 - easing.type: Easing.OutCubic - } - } } } } diff --git a/quickshell/Modules/DankBar/Widgets/RamMonitor.qml b/quickshell/Modules/DankBar/Widgets/RamMonitor.qml index 2d9b224c..98afb8a5 100644 --- a/quickshell/Modules/DankBar/Widgets/RamMonitor.qml +++ b/quickshell/Modules/DankBar/Widgets/RamMonitor.qml @@ -109,13 +109,6 @@ BasePill { width: implicitWidth height: implicitHeight - Behavior on width { - NumberAnimation { - duration: Theme.shortDuration - easing.type: Easing.OutCubic - } - } - StyledTextMetrics { id: ramBaseline font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale)