mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
9 lines
199 B
Bash
Executable File
9 lines
199 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
|