A Cyberpunk 2077 CLI mod manager for Linux.
Download the binary (TBD) and run:
vapor init
It will ask you for the directory to your Cyberpunk 2077
directory.
Download any mod file and run:
vapor add "path/to/mod.zip" --name "mod name" --version "mod version" --dependencies "mod,dependencies,comma,separated,if,applicable"
You can verify that your mod is installed by running:
vapor status
You can also pass the --json
flag to status
for a JSON representation.
To disable a given mod, run:
vapor disable "mod name"
To reenable, swap disable
for enable
.
To list the files tracked by Vapor for a given mod, run:
vapor list "mod name"
To list all installed mods, run:
vapor list
And finally, to see a graph tree of your mods, run:
vapor graph
Vapor is meant to be pretty low level. It will not automatically resolve nor detect version breakage or dependencies. Many operations such as adding dependencies and resolving version errors should be done manually! You are encouraged to build other tools on top of Vapor that can add these features.