Scripting based game mod manager for Linux. Currently supports nexusmods.com. Tested with Cyberpunk 2077, but shoud work with any other game that does not require post-processing steps after extracting the mods.
WARNING: This is experimental software. Use with caution, back up your files. You have been warned!
- Install requirements.
- Put this repository into your
LUA_PATH
. - Symlink
hmm.lua
andhmm-nxm.lua
into yourPATH
, but without the.lua
suffix. - Copy
hmm-nxm.desktop
into~/.local/share/applications
and bullyxdg-utils
into using it fornxm:
links.
- Lua 5.4 (executable
lua5.4
) - curl
- libxml2 (executable
xmllint
) - rsync
- wget
- xdg-utils (executable
xdg-open
) - zenity
- Archive extraction tools for
.7z
,.rar
and.zip
, supported are:- unar (extracts
.7z
,.rar
,.zip
) - p7zip (executable
7z
, extracts.7z
,.zip
, and maybe.rar
) - unrar (extracts
.rar
) - unzip (extracts
.zip
)
- unar (extracts
- Create
~/.local/share/lua
. - Put the repository into that directory.
- Append this to your
.profile
or.bashrc
:
export LUA_PATH="$HOME/.local/share/lua/?.lua;$HOME/.local/share/lua/?/init.lua;;"
Alternatively, for a system-wide installation:
- Put this repository somewhere into your
LUA_PATH
,lua5.4 -e 'print(package.path)'
shows you the defaults.
Alternatively:
From within the repository directory:
mkdir -p "$HOME/.local/bin"
ln -s "$PWD/hmm.lua" "$HOME/.local/bin/"
ln -s "$PWD/hmm-nxm.lua" "$HOME/.local/bin/"
From within the repository directory:
mkdir -p "$HOME/.local/share/applications"
cp "hmm-nxm.desktop" "$HOME/.local/share/applications/"
xdg-settings set default-url-scheme-handler nxm hmm-nxm.desktop
xdg-mime default hmm-nxm.desktop x-scheme-handler/nxm
hmm "<script file>"
This downloads, unpacks, installs and deploys all the mods declared in the file. Previous deployments are automatically cleaned up beforehand.
Script files are regular Lua files that are executed by hmm
in a special environment.
They should have
gamedir = "<path>"
as their first statement, the rest is mod source specific:
To remove all mods from a game, create a script file with just a gamedir
setting, and run hmm
on it.
To uninstall hmm
itself, remove all the files mentioned in the installation process, and the directory ~/.local/share/hmm
.