#!/bin/bash

# blob:summary=Update user-installed git themes

mapfile -t themes < <(blob-theme-extras)

for theme in "${themes[@]}"; do
  echo "Updating: $(basename "$theme")"
  git -C "$theme" pull
done
