From 55cb2498b3da37e84e8bf1f745b9de6ee6e0b759 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Tue, 17 Feb 2026 16:07:39 -0500 Subject: [PATCH 1/2] Hotfix: Swap lmstudio -> lmstudio-bin --- migrations/1771345870.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 migrations/1771345870.sh diff --git a/migrations/1771345870.sh b/migrations/1771345870.sh new file mode 100644 index 00000000..ca605ba1 --- /dev/null +++ b/migrations/1771345870.sh @@ -0,0 +1,7 @@ +if pacman -Q lmstudio &>/dev/null; then + echo "Switch lmstudio -> lmstudio-bin" + + omarchy-pkg-drop lmstudio + omarchy-pkg-add lmstudio-bin +fi + From 0c50bd893fe1c0f1eecaaf0acd1ac08b1e801db5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 18 Feb 2026 09:25:14 +0100 Subject: [PATCH 2/2] So the migration doesn't appear anonymous even when lmstudio isn't installed --- migrations/1771345870.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/migrations/1771345870.sh b/migrations/1771345870.sh index ca605ba1..3af93cd5 100644 --- a/migrations/1771345870.sh +++ b/migrations/1771345870.sh @@ -1,7 +1,6 @@ -if pacman -Q lmstudio &>/dev/null; then - echo "Switch lmstudio -> lmstudio-bin" +echo "Switch lmstudio -> lmstudio-bin" +if pacman -Q lmstudio &>/dev/null; then omarchy-pkg-drop lmstudio omarchy-pkg-add lmstudio-bin fi -