Skip to content

Commit 8c4bf65

Browse files
committed
Start using the stable pkg server by default
1 parent 3e4421a commit 8c4bf65

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
if [[ $1 == "edge" ]]; then
4+
sudo sed -i 's|https://pkgs.omarchy.org/.*$arch|https://pkgs.omarchy.org/edge/$arch|' /etc/pacman.conf
5+
else
6+
sudo sed -i 's|https://pkgs.omarchy.org/.*$arch|https://pkgs.omarchy.org/stable/$arch|' /etc/pacman.conf
7+
fi

default/pacman/pacman.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ Include = /etc/pacman.d/mirrorlist
2727

2828
[omarchy]
2929
SigLevel = Optional TrustAll
30-
Server = https://pkgs.omarchy.org/$arch
30+
Server = https://pkgs.omarchy.org/stable/$arch

migrations/1763561396.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
echo "Switch to stable Omarchy Package Repository builds"
2+
3+
omarchy-refresh-pacman-opr-server

0 commit comments

Comments
 (0)