From fce120fa311282ddd41866cfca47a3723fa26c54 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sun, 8 Feb 2026 22:16:45 -0500 Subject: [PATCH] system monitor: disable anims until list is stable --- quickshell/Modules/ProcessList/ProcessesView.qml | 5 +++++ quickshell/Widgets/DankPopout.qml | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/quickshell/Modules/ProcessList/ProcessesView.qml b/quickshell/Modules/ProcessList/ProcessesView.qml index 480e613a..52672f50 100644 --- a/quickshell/Modules/ProcessList/ProcessesView.qml +++ b/quickshell/Modules/ProcessList/ProcessesView.qml @@ -294,6 +294,11 @@ Item { clip: true spacing: 2 + add: root.searchText.length > 0 ? ListViewTransitions.add : null + remove: root.searchText.length > 0 ? ListViewTransitions.remove : null + displaced: root.searchText.length > 0 ? ListViewTransitions.displaced : null + move: root.searchText.length > 0 ? ListViewTransitions.move : null + model: ScriptModel { values: root.cachedProcesses objectProp: "pid" diff --git a/quickshell/Widgets/DankPopout.qml b/quickshell/Widgets/DankPopout.qml index 120aeec2..219e0f7e 100644 --- a/quickshell/Widgets/DankPopout.qml +++ b/quickshell/Widgets/DankPopout.qml @@ -442,9 +442,6 @@ Item { readonly property int blurMax: 64 layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1" - layer.smooth: false - layer.textureSize: Qt.size(Math.round(width * root.dpr), Math.round(height * root.dpr)) - layer.textureMirroring: ShaderEffectSource.MirrorVertically layer.effect: MultiEffect { id: shadowFx