omarchy/bin/omarchy-theme-update
David Heinemeier Hansson d599a98a76 Allow updating themes
2025-08-04 19:50:03 +02:00

13 lines
273 B
Bash
Executable File

#!/bin/bash
# Show logo
clear
cat <~/.local/share/omarchy/logo.txt
for dir in ~/.config/omarchy/themes/*/; do
[ -d "$dir" ] && [ ! -L "${dir%/}" ] && echo "Updating: $(basename "$dir")" && git -C "$dir" pull
done
gum spin --spinner "globe" --title "Done!" -- sleep 2