From 4110d2529ca2f05f8354f7919261e9ed2c88394e Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:28:34 +0700 Subject: [PATCH 1/2] ai: dont replace `.` in ollama model name --- .config/quickshell/ii/services/Ai.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/services/Ai.qml b/.config/quickshell/ii/services/Ai.qml index cff1bcbb2..f265d953c 100644 --- a/.config/quickshell/ii/services/Ai.qml +++ b/.config/quickshell/ii/services/Ai.qml @@ -62,7 +62,7 @@ Singleton { } function safeModelName(modelName) { - return modelName.replace(/:/g, "_").replace(/\./g, "_").replace(/ /g, "-").replace(/\//g, "-") + return modelName.replace(/:/g, "_").replace(/ /g, "-").replace(/\//g, "-") } property list defaultPrompts: [] From 7a937833f3aa27d35d400c18176f8cb25ddcadaa Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 1 Aug 2025 08:16:19 +0700 Subject: [PATCH 2/2] background: parallax on whole workspace group --- .config/quickshell/ii/modules/background/Background.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index ffd08bee5..dc6bdece1 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -152,8 +152,8 @@ Scope { visible: !bgRoot.wallpaperIsVideo property real value // 0 to 1, for offset value: { - // Range = half-groups that workspaces span on - const chunkSize = 5; + // Range = groups that workspaces span on + const chunkSize = Config?.options.bar.workspaces.shown ?? 10; const lower = Math.floor(bgRoot.firstWorkspaceId / chunkSize) * chunkSize; const upper = Math.ceil(bgRoot.lastWorkspaceId / chunkSize) * chunkSize; const range = upper - lower;