mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 12:47:49 +02:00
* Add omarchy CLI * Remove outdated or internal * Add bash completions for command * Add omarchy command documentation * Add missing docs * Correct to what's now right * Fix tests --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
12 lines
346 B
Bash
Executable File
12 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Reinstall the Omarchy source directory from git
|
|
|
|
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
|