Files
arthur-os/bin/omarchy-theme-update
2026-04-28 12:03:46 -04:00

11 lines
251 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Update user-installed git themes
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