Files
omarchy/bin/omarchy-theme-update

4 lines
161 B
Plaintext
Raw Normal View History

2025-07-29 10:42:18 -04:00
#!/bin/bash
for dir in ~/.config/omarchy/themes/*/; do
[ -d "$dir" ] && [ ! -L "${dir%/}" ] && echo "Updating: $(basename "$dir")" && git -C "$dir" pull
done