Merge branch 'main' of ssh://adam-french.co.uk:2222/adamf/scripts

This commit is contained in:
2026-03-24 12:55:58 +00:00
2 changed files with 11 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ $color_white = rgb(FFFFFF)
### MONITORS ### ### MONITORS ###
################ ################
monitor=,preferred,auto,1 monitor=,preferred,auto,1.33
################### ###################

10
sh/pull_all Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
for dir in */; do
if [ -d "$dir/.git" ]; then
echo "Pulling in $dir..."
git -C "$dir" pull
echo ""
fi
done