mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
The whole git history of the omarchy repository is not required to, for example, run omarchy-reinstall. If needed, additional history can be fetched manually
9 lines
278 B
Bash
Executable File
9 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Reinstall the Omarchy configuration directory from the git source.
|
|
|
|
git clone --depth=1 "https://github.com/basecamp/omarchy.git" ~/.local/share/omarchy-new >/dev/null
|
|
mv $OMARCHY_PATH ~/.local/share/omarchy-old
|
|
mv ~/.local/share/omarchy-new $OMARCHY_PATH
|