Files
omarchy/bin/omarchy-theme-update
2025-10-21 17:52:25 -07:00

9 lines
203 B
Bash
Executable File

#!/bin/bash
for dir in ~/.config/omarchy/themes/*/; do
if [[ -d $dir ]] && [[ ! -L "${dir%/}" ]] && [[ -d "$dir/.git" ]]; then
echo "Updating: $(basename "$dir")"
git -C "$dir" pull
fi
done