Skip to content

Instantly share code, notes, and snippets.

@theepicsnail
Created September 14, 2024 03:29
Show Gist options
  • Save theepicsnail/a541eb28019aea95ae92ead61840ede4 to your computer and use it in GitHub Desktop.
Save theepicsnail/a541eb28019aea95ae92ead61840ede4 to your computer and use it in GitHub Desktop.
VCC On Linux
# Don't bother setting unityhub/unit up.
# Just make a new unity project and then add the path to vpm.
PROJECT="/home/snail/Desktop/UnityProjects/Rusk" # Ofc set this to whatever project you want to add/edit
# Example usage
vpm add project $PROJECT
vpm list projects
vpm add package com.vrchat.avatars -p $PROJECT
vpm add package com.llealloo.audiolink -p $PROJECT
vpm add repo "http://vcc.vrcfury.com"
vpm add package com.vrcfury.vrcfury -p $PROJECT
# List all the packages your vpm knows about, needs jq
# requires jq to be installed, but likely does the right thing.
cat ~/.local/share/VRChatCreatorCompanion/Repos/* | jq ".repo.packages | keys"
# doesn't require anything, but may break
find ~/.local/share/VRChatCreatorCompanion -type f -exec sed -nE 's/^ {12}"name": "(.*)",$/\1/p' {} + | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment