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