Files
Nomarchy/bin/nomarchy-theme-update
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

9 lines
200 B
Bash
Executable File

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