mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 12:37:46 +00:00
* add themes from https://github.com/eza-community/eza-themes * init eza theme during install * add migration * refactor migration script to only link eza theme if it exists for current theme * only link to eza theme if current theme supports it * only link to eza theme if current theme supports it * Cleanup --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
8 lines
183 B
Bash
Executable File
8 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f ~/.config/omarchy/current/theme/eza.yml ]; then
|
|
ln -snf ~/.config/omarchy/current/theme/eza.yml ~/.config/eza/theme.yml
|
|
else
|
|
rm -f ~/.config/eza/theme.yml
|
|
fi
|