From 179d903c57fed2e292ed125e334d2874045de999 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 2 Jun 2025 10:22:28 +0200 Subject: [PATCH] Move config to its own and early installer --- install.sh | 6 ------ install/3-config.sh | 5 +++++ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 install/3-config.sh diff --git a/install.sh b/install.sh index b1f9f76..8822af2 100644 --- a/install.sh +++ b/install.sh @@ -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 diff --git a/install/3-config.sh b/install/3-config.sh new file mode 100644 index 0000000..c91af60 --- /dev/null +++ b/install/3-config.sh @@ -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