Skip to content

Scripts

Scripts#

Useful scripts for various tasks.


Chris Titus Tech's Windows Utility
Install Programs, Tweaks, Fixes, and Updates.

WinMasterBlocker
Block Adobe, Autodesk, Corel, Maxon, and more connections via Firewall.

blocky web
A userscript to remove all rounded corners from most websites.


Clone entire GitHub Profile / Organization

gh repo list ORGNAMEHERE --limit 4000 | while read -r repo _; do
  gh repo clone "$repo" "$repo"
done

Update Existing Repositories

gh repo list myorgname --limit 1000 | while read -r repo _; do
  gh repo clone "$repo" "$repo" -- -q 2>/dev/null || (
    cd "$repo"
    git checkout -q main 2>/dev/null || true
    git checkout -q master 2>/dev/null || true
    git pull -q
  )
done