Skip to content

Instantly share code, notes, and snippets.

@masckmaster2007
Created June 26, 2025 06:52
Show Gist options
  • Select an option

  • Save masckmaster2007/38291d2043753d7ff1417d3a73753971 to your computer and use it in GitHub Desktop.

Select an option

Save masckmaster2007/38291d2043753d7ff1417d3a73753971 to your computer and use it in GitHub Desktop.
Proof of Concept Bash Script that installs any Texture Pack folder from Texture Workshop. MAKE A BACKUP OF GEODE'S & GD'S RESOURCES FOLDER, INSTALLATION IS PERMANENT.
read -p "GD Path (where there is Resources & geode): " gdpath
read -p "TP Path (Folder): " tppath
rm -rf $tppath/ui
for dir in $tppath/*/; do
[ -d "$dir" ] && cp -rf "$dir" $gdpath/geode/resources
done
cp -rf $tppath/* $gdpath/Resources
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment