omarchy/migrations/1754566681.sh
Chris AtLee c7e5428df9
Fix git usage in migration script
A user may not have `co` aliased to `checkout` and then will have errors running the migration script.
2025-08-08 08:35:32 -04:00

8 lines
312 B
Bash

echo "Make new Osaka Jade theme available as new default"
if [[ ! -L ~/.config/omarchy/themes/osaka-jade ]]; then
rm -rf ~/.config/omarchy/themes/osaka-jade
git -C ~/.local/share/omarchy checkout -f themes/osaka-jade
ln -nfs ~/.local/share/omarchy/themes/osaka-jade ~/.config/omarchy/themes/osaka-jade
fi