1.0.0
Compatibility
Required content
Changes
HotbarBumpers
HotbarBumpers is a lightweight, client-side Fabric mod that adds two configurable keybindings for navigating your hotbar:
- Next Hotbar Slot
- Previous Hotbar Slot
Instead of relying on the mouse wheel, you can bind these actions to any keyboard key or mouse button, such as Mouse Button 4 and Mouse Button 5.
Features
- Adds configurable Next Hotbar Slot and Previous Hotbar Slot keybindings.
- Uses Minecraft's native hotbar selection behavior.
- Wraps between slot 9 and slot 1 just like vanilla.
- Client-side only.
- Lightweight implementation with no unnecessary mixins.
Installation
- Install Fabric Loader.
- Install Fabric API.
- Place HotbarBumpers into your mods folder.
- Launch Minecraft.
- Open Options → Controls → Key Binds → HotbarBumpers and assign your preferred keys.
Compatibility
- Minecraft Java Edition 26.2
- Fabric Loader
- Fabric API
HotbarBumpers is compatible with vanilla and modded servers because all functionality runs entirely on the client.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:Oj0qJbHE:Qu31biA0"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:Oj0qJbHE:Qu31biA0"
}

