Files
Hyprcachy/omarchy/scripts/omarchy-theme-update
2026-01-04 20:49:31 +01: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