Simplify so we can just run everything in the install dir

This commit is contained in:
David Heinemeier Hansson
2025-06-02 09:26:38 +02:00
parent 874c39f180
commit 2bdb064c02
5 changed files with 14 additions and 22 deletions

View File

@ -5,4 +5,10 @@ set -e
trap 'echo "Omarchy installation failed! You can retry by running: source ~/.local/share/omarchy/install.sh"' ERR
# Install everything
source ~/.local/share/omarchy/install/all.sh
for f in ~/.local/share/omarchy/install/*.sh; do source "$f"; done
# Copy over Omarchy configs
cp -R ~/.local/share/omarchy/config/* ~/.config/
# Use default bashrc from Omarchy
echo "source ~/.local/share/omarchy/default/bash/rc" >~/.bashrc