100 lines
2.3 KiB
Bash
Executable File
100 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Set the Omarchy package channel.
|
|
# omarchy:args=<stable|rc|edge|dev>
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -euo pipefail
|
|
|
|
usage() { echo "Usage: omarchy-channel-set [stable|rc|edge|dev]"; }
|
|
fail() { echo "Error: $*" >&2; exit 1; }
|
|
|
|
confirm_dev() {
|
|
cat <<'WARNING'
|
|
|
|
The dev channel links Omarchy directly to a checkout of the source in ~/omarchy.
|
|
It's exclusively intended for developers working on Omarchy itself.
|
|
|
|
WARNING
|
|
|
|
gum confirm --default=false "Switch to dev channel?"
|
|
}
|
|
|
|
validate_dev_checkout() {
|
|
local checkout="$1"
|
|
|
|
if [[ -e $checkout && ! -d $checkout/.git ]]; then
|
|
fail "$checkout already exists and is not a git checkout."
|
|
fi
|
|
|
|
if [[ -d $checkout/.git && ( ! -d $checkout/bin || ! -d $checkout/default || ! -d $checkout/shell ) ]]; then
|
|
fail "$checkout is a git checkout, but it does not look like Omarchy."
|
|
fi
|
|
}
|
|
|
|
link_dev_checkout() {
|
|
local checkout="$1"
|
|
[[ -d $checkout/.git ]] || git clone https://github.com/basecamp/omarchy.git "$checkout"
|
|
|
|
omarchy-dev-link "$checkout" --no-reboot
|
|
}
|
|
|
|
(( $# > 0 )) || { usage; exit 1; }
|
|
|
|
dev_checkout=""
|
|
channel="$1"
|
|
leaving_dev=0
|
|
|
|
case "$channel" in
|
|
stable)
|
|
pacman_channel=stable
|
|
packages=(omarchy omarchy-settings)
|
|
;;
|
|
rc)
|
|
pacman_channel=rc
|
|
packages=(omarchy omarchy-settings)
|
|
;;
|
|
edge)
|
|
pacman_channel=edge
|
|
packages=(omarchy-dev omarchy-settings-dev)
|
|
;;
|
|
dev)
|
|
confirm_dev || { echo "Cancelled."; exit 0; }
|
|
dev_checkout="$HOME/omarchy"
|
|
validate_dev_checkout "$dev_checkout"
|
|
pacman_channel=edge
|
|
packages=(omarchy-dev omarchy-settings-dev)
|
|
;;
|
|
*)
|
|
echo "Unknown channel: $channel" >&2
|
|
usage >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
if [[ -z $dev_checkout && $OMARCHY_PATH != "/usr/share/omarchy" ]]; then
|
|
leaving_dev=1
|
|
fi
|
|
|
|
if [[ -n $dev_checkout ]]; then
|
|
link_dev_checkout "$dev_checkout"
|
|
export OMARCHY_PATH="$dev_checkout"
|
|
export PATH="$OMARCHY_PATH/bin:$PATH"
|
|
omarchy-state set reboot-required
|
|
fi
|
|
|
|
omarchy-refresh-pacman "$pacman_channel"
|
|
# --ask 4 accepts omarchy <-> omarchy-dev replacement prompts without file overwrites.
|
|
sudo env OMARCHY_UPDATE_PACMAN=1 pacman -S --needed --noconfirm --ask 4 "${packages[@]}"
|
|
|
|
if [[ -z $dev_checkout ]]; then
|
|
omarchy-dev-unlink --no-reboot
|
|
export OMARCHY_PATH=/usr/share/omarchy
|
|
|
|
if (( leaving_dev )); then
|
|
omarchy-state set reboot-required
|
|
fi
|
|
fi
|
|
|
|
omarchy-update -y
|