From 4c482769b8084606e187169d4a5236a065a3e587 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 8 May 2026 21:28:09 +0200 Subject: [PATCH 1/2] Ensure quotes --- install/config/hardware/bluetooth.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/config/hardware/bluetooth.sh b/install/config/hardware/bluetooth.sh index 2157f07b..d0c0389f 100644 --- a/install/config/hardware/bluetooth.sh +++ b/install/config/hardware/bluetooth.sh @@ -2,5 +2,4 @@ chrootable_systemctl_enable bluetooth.service mkdir -p ~/.config/wireplumber/wireplumber.conf.d/ -cp $OMARCHY_PATH/default/wireplumber/wireplumber.conf.d/bluetooth-a2dp-autoconnect.conf \ - ~/.config/wireplumber/wireplumber.conf.d/ +cp "$OMARCHY_PATH/default/wireplumber/wireplumber.conf.d/bluetooth-a2dp-autoconnect.conf" ~/.config/wireplumber/wireplumber.conf.d/ From 2594a80cba384fb5a2df5f44a2579033cfc27111 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 8 May 2026 21:34:46 +0200 Subject: [PATCH 2/2] Use latest package name --- default/pi/agent/extensions/omarchy-system-theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default/pi/agent/extensions/omarchy-system-theme.ts b/default/pi/agent/extensions/omarchy-system-theme.ts index 18c6fef6..2c54f2a1 100644 --- a/default/pi/agent/extensions/omarchy-system-theme.ts +++ b/default/pi/agent/extensions/omarchy-system-theme.ts @@ -7,7 +7,7 @@ import { existsSync } from "node:fs"; import { join } from "node:path"; -import type { ExtensionAPI } from "@mariozechner/pi-coding-agent"; +import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; const home = process.env.HOME ?? ""; const lightModePath = join(home, ".config/omarchy/current/theme/light.mode");