Move config to its own and early installer

This commit is contained in:
David Heinemeier Hansson
2025-06-02 10:22:28 +02:00
parent 94896fdba4
commit 179d903c57
2 changed files with 5 additions and 6 deletions

View File

@ -6,9 +6,3 @@ trap 'echo "Omarchy installation failed! You can retry by running: source ~/.loc
# Install everything
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

5
install/3-config.sh Normal file
View File

@ -0,0 +1,5 @@
# 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