HomeJavaModsKonfy
Konfy
Konfy — screenshot 1Konfy — screenshot 2Konfy — screenshot 3

KonfyLib

Elegant config library for Fabric Minecraft mods. Type-safe, JSON-backed, animated GUI with zero boilerplate.

Features

Showcase

Mods Hub Config Widgets
Mods Widgets
Color Picker Popups
Color Popups

Quick Start

// 1. Entrypoint
public class MyModEntrypoint implements KonfyLibApi {
    @Override
    public ModConfig getConfig() { return MyModConfig.create(); }
}

// 2. Config
Option<Boolean> toggle = BooleanOption.createBuilder(
    "Enable Feature", () -> enabled, true, val -> enabled = val
).build();

OptionGroup group = OptionGroup.createBuilder("General").addOption(toggle).build();
Category cat = new Category("My Mod", List.of(group), List.of());
return new ModConfig(Paths.get("config/mymod.json"), List.of(cat), () -> {});
// 3. fabric.mod.json
{ "entrypoints": { "konfy": ["com.example.MyModEntrypoint"] } }

Example

See example/ for a working mod demonstrating all widget types.

Install

Download the latest jar from Releases and add it to your mods/ folder.

Ownership

Fork of WalksyLib, redesigned for elegance.

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more