This is an open source World of Warcraft addon managager for Linux. It supports the following addon repositories:
This project uses Termion for communicating with the TTY. Therefore, it only runs on Linux. In order to support Windows and macos, Crossterm might be a better solution. If there is enough demand, I might consider switching to Crossterm.
git clone https://github.com/MR2011/wowAddonManager.git
cargo run
Coming soon
The Config.toml
configuration file is stored in $HOME/.config/wowAddonManager
(or if set $XDG_CONFIG_HOME/wowAddonManager
).
Before you run the program for the first time, you have to define the path to your World of Warcraft addon folders in the configuration file:
[paths]
classic = "/path/to/wow/classic/interface/addons"
retail = "/path/to/wow/retail/interface/addons"
Default keybindings:
[keybindings]
update_addon = "u"
update_all_addons = "U"
remove_addon = "r"
download_addon = "d"
install_addon = "i"
select_retail_version = "R"
select_classic_version = "C"
search_addon = "/"
next_tab = "l"
prev_tab = "h"
next_table_item = "j"
prev_table_item = "k"
quit = "q"
scroll_down_log = "J"
scroll_up_log = "K"
.addons.json
in your addon folders to manage your addons. There is no addon detection for already installed addons for now, so you have to install your addons again with the wow addon manager.