A customizable GUI for command macros.
MacroGrid is a client-side mod that adds a customizable GUI with buttons to execute commands, send chat messages, or run macros instantly.
⚠️ Requires Fabric API
Are you tired of typing the same commands over and over again?
//pos1, //copy, //paste with a single click./home, /warp, or chat phrases.If the video above doesn't load, here is how to use the mod:
+ Add button at the bottom. Enter a name, command (e.g., /time set day), choose an icon/color, and click Save.
Here is how the mod looks in-game:
Main Menu - The dashboard where you organize buttons.

Add Button - Simple interface to add new buttons.

The mod saves your layout in a JSON file located at: .minecraft/config/command_gui_buttons.json.
You can edit buttons in-game or manually in the file:
{
"buttons": [
{
"name": "Creative",
"color": "GOLD",
"icon": "STAR",
"commands": [
{
"command": "/gamemode creative",
"type": "COMMAND"
}
]
},
{
"name": "Set Home",
"color": "BLUE",
"icon": "HOME",
"commands": [
{
"command": "/sethome",
"type": "COMMAND"
}
]
}
]
}
Conversation