mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-31 05:59:22 +00:00
4 lines
161 B
Plaintext
4 lines
161 B
Plaintext
![]() |
#!/bin/bash
|
||
|
for dir in ~/.config/omarchy/themes/*/; do
|
||
|
[ -d "$dir" ] && [ ! -L "${dir%/}" ] && echo "Updating: $(basename "$dir")" && git -C "$dir" pull
|
||
|
done
|