From bb221326eba85d3dd72d83c0d7e6b8eec51d8d28 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Wed, 16 Jul 2025 00:17:18 +0700 Subject: [PATCH] background parallax: make half groups really half group --- .config/quickshell/ii/modules/background/Background.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index 55d13d644..acaf63cc9 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -141,7 +141,7 @@ Scope { property real value // 0 to 1, for offset value: { // Range = half-groups that workspaces span on - const chunkSize = 3; + const chunkSize = 5; const lower = Math.floor(bgRoot.firstWorkspaceId / chunkSize) * chunkSize; const upper = Math.ceil(bgRoot.lastWorkspaceId / chunkSize) * chunkSize; const range = upper - lower;