Bookeeper¶
CLI mod manager for Baldur's Gate 3 on Linux/Steam
Prototype / Weekend Hack
This is an experiment/prototype/weekend hack I built when switching to Linux on my gaming machine. It works for my use case but has limitations. Use at your own risk!
What is Bookeeper?¶
Bookeeper is a command-line tool for managing Baldur's Gate 3 mods on Linux with Steam. It handles:
- Mod activation/deactivation via symlinks
- Mod profiles for switching between different mod sets
- BG3 Script Extender installation
- Multiple mod versions side by side
Why?¶
When I switched from Windows to Linux on my gaming PC, I needed a way to manage BG3 mods. Existing mod managers were Windows-focused, so I built this quick hack to solve my problem.
Quick Example¶
# Install bookeeper
go install github.com/GiGurra/bookeeper@latest
# Check current status
bookeeper status
# Import a mod you downloaded
bookeeper mods make-available ~/Downloads/CoolMod.zip
# Activate it
bookeeper mods activate "CoolMod" "1.0"
# Save this setup as a profile
bookeeper profiles save my-playthrough
# Later, switch back to this mod set
bookeeper profiles load my-playthrough
How It Works¶
You download mod.zip
↓
bookeeper mods make-available mod.zip
↓
Mod extracted to ~/.local/share/bookeeper/downloaded_mods/
↓
bookeeper mods activate "ModName" "version"
↓
Symlink created in BG3's Mods folder
↓
modsettings.lsx updated
↓
BG3 loads your mod!
Limitations¶
Be aware of what this prototype doesn't do:
- No automatic mod downloading (you download zips manually)
- No mod dependency management
- No version conflict detection
- Limited error handling
- Only tested on Linux/Steam (not Windows/GOG)
- Load order only via activation order
- Requires mods to have valid
info.json
Getting Started¶
- Installation - How to install bookeeper
- Basic Usage - Common workflows
- Profiles - Save and load mod sets
- Troubleshooting - Common issues
Reference¶
- Commands - Full command reference
- Configuration - Paths and settings
- File Formats - info.json and profile.json