mirror of
https://github.com/basecamp/omarchy.git
synced 2025-08-03 23:29:23 +00:00
36 lines
2.3 KiB
Bash
Executable File
36 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
ansi_art=' ▄▄▄
|
|
▄█████▄ ▄███████████▄ ▄███████ ▄███████ ▄███████ ▄█ █▄ ▄█ █▄
|
|
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
|
|
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ ███ ███ ███
|
|
███ ███ ███ ███ ███ ▄███▄▄▄███ ▄███▄▄▄██▀ ███ ▄███▄▄▄███▄ ███▄▄▄███
|
|
███ ███ ███ ███ ███ ▀███▀▀▀███ ▀███▀▀▀▀ ███ ▀▀███▀▀▀███ ▀▀▀▀▀▀███
|
|
███ ███ ███ ███ ███ ███ ███ ██████████ ███ █▄ ███ ███ ▄██ ███
|
|
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
|
|
▀█████▀ ▀█ ███ █▀ ███ █▀ ███ ███ ███████▀ ███ █▀ ▀█████▀
|
|
███ █▀ '
|
|
|
|
clear
|
|
echo -e "\n$ansi_art\n"
|
|
|
|
sudo pacman -Sy --noconfirm --needed git
|
|
|
|
# Use custom repo if specified, otherwise default to basecamp/omarchy
|
|
OMARCHY_REPO="${OMARCHY_REPO:-basecamp/omarchy}"
|
|
|
|
echo -e "\nCloning Omarchy from: https://github.com/${OMARCHY_REPO}.git"
|
|
rm -rf ~/.local/share/omarchy/
|
|
git clone "https://github.com/${OMARCHY_REPO}.git" ~/.local/share/omarchy >/dev/null
|
|
|
|
# Use custom branch if instructed
|
|
if [[ -n "$OMARCHY_REF" ]]; then
|
|
echo -e "\eUsing branch: $OMARCHY_REF"
|
|
cd ~/.local/share/omarchy
|
|
git fetch origin "${OMARCHY_REF}" && git checkout "${OMARCHY_REF}"
|
|
cd -
|
|
fi
|
|
|
|
echo -e "\nInstallation starting..."
|
|
source ~/.local/share/omarchy/install.sh
|