It could probably be changed to be a palette or gradient manager, but most people have way more brushes than palettes or gradients.
The code is pretty simple.
You just define an install directory, and an active directory in the plugin itself. This is mine:
Code:
#################
## User Config ##
#################
ACTIVE_DIR=r"C:\Local Documents\Images\Gimp Brushes\ACTIVE_DIR" #<<<-----SET ME<<<----- (Directory to hold active sets)
INSTALL_DIR=r"C:\Local Documents\Images\Gimp Brushes\INSTALL_DIR"#<<<-----SET ME<<<----- (Directory where you place your sets)
EXTENTIONS = [".gbr", ".vbr", ".gih", ".abr"] # Valid brush extentions
################
## End Config ##
################
This in Gimp add the directory you assigned to ACTIVE_DIR to your brushes directory.
The program leaves all other (default install and user folder install) brushes alone. It gives a tossle list of every subdirectory under the INSTALL_DIR directory, and you can just check them on or off to activate different brush sets.
-Rob A>