Overview

The Glorious Model I 2 Wireless is an ergonomic gaming mouse engineered for players who prioritize comfort, lightweight design, and extensive customization. Successor to the original Model I, this iteration refines the design and internal components while maintaining its signature features. Weighing 75 grams, it is designed to reduce fatigue during extended gaming sessions, a critical factor for competitive gamers in titles like first-person shooters (FPS) and multiplayer online battle arenas (MOBAs). The mouse features a right-handed ergonomic shape with a thumb rest, providing support and reducing strain for claw, palm, and fingertip grip styles, depending on hand size. Its symmetrical yet contoured design aims to fit a broad range of users while specifically addressing the needs of right-handed players.

A key differentiator of the Model I 2 Wireless is its customizable side button array. It includes nine programmable buttons, four of which are magnetic and interchangeable. This allows users to swap out button shapes and even remove them entirely, tailoring the mouse's physical layout to specific game commands or personal ergonomic preferences. For instance, a player might remove the furthest forward thumb button for a cleaner grip or swap a flat button for a raised one to improve tactile feedback. This level of physical customization extends beyond typical software-only remapping, offering a more personalized hardware experience. The device operates via a 2.4 GHz wireless connection for low-latency gaming, or it can be used in a wired mode via its USB-C cable, providing flexibility for different setup requirements or when charging. The included Ascended Cable is designed to be lightweight and flexible, minimizing drag even in wired operation.

Under the hood, the Model I 2 Wireless is powered by Glorious's proprietary BAMF 2.0 optical sensor, co-developed with PixArt. This sensor is specified to offer up to 26,000 DPI, 650 IPS tracking speed, and 50G acceleration, metrics that indicate high precision and responsiveness for demanding gaming scenarios. The integration of Glorious's software allows for extensive customization of DPI settings, polling rate, lift-off distance, and button assignments, including macro creation. This software also manages the mouse's RGB lighting, which features three distinct zones for aesthetic personalization. The combination of a high-performance sensor, a lightweight ergonomic chassis, and deep physical and software customization makes the Glorious Model I 2 Wireless a suitable option for competitive gamers seeking a versatile and comfortable peripheral. Its hybrid connectivity further enhances its appeal by offering reliable wireless performance alongside a fallback wired mode for uninterrupted play or charging convenience.

Compared to other ergonomic lightweight mice, the Model I 2 Wireless stands out due to its unique interchangeable side buttons. While competitors like the Logitech G502 X PLUS offer similar button counts and ergonomic designs, the Glorious Model I 2 Wireless provides a distinct advantage in physical adaptability. Its overall weight of 75 grams positions it competitively against other lightweight wireless mice such as the Razer DeathAdder V3 Pro, which weighs 63 grams, and the SteelSeries Aerox 5 Wireless, weighing 74 grams, as detailed in an RTINGS review of the Glorious Model I 2 Wireless. This balance of weight, ergonomics, and customization makes it a strong contender for users who find traditional lightweight mice too small or lacking in button functionality, while still avoiding the heavier profile of some feature-rich mice.

Key features

  • Ergonomic Right-Handed Design: Shaped for comfort during extended gaming sessions, featuring a thumb rest for reduced strain.
  • Lightweight Construction (75g): Engineered to minimize fatigue, enhancing maneuverability and speed in competitive gaming.
  • BAMF 2.0 Optical Sensor: Proprietary sensor with up to 26,000 DPI, 650 IPS, and 50G acceleration for precise tracking and responsiveness.
  • Hybrid Connectivity: Supports both low-latency 2.4 GHz wireless (with included dongle) and wired USB-C operation for flexible setup and charging.
  • Interchangeable Magnetic Side Buttons: Four customizable side buttons that can be swapped or removed, allowing physical tailoring of the mouse layout.
  • Nine Programmable Buttons: All buttons can be remapped through the Glorious Core software for custom commands and macros.
  • RGB Lighting: Three customizable RGB zones for personalized aesthetics, managed via Glorious Core software.
  • Glorious Switches Rated for 80 Million Clicks: Durable main button switches designed for longevity and consistent performance.
  • G-Skates Feet: Made from 100% pure PTFE, providing smooth glide across various mouse pad surfaces.
  • Glorious Core Software Support: Centralized software for managing DPI settings, polling rate, lift-off distance, button assignments, RGB, and firmware updates.

Pricing

The Glorious Model I 2 Wireless is available as a single-tier product. Pricing is subject to change based on retailer and regional availability.

Product Price (USD) As Of Date Details
Glorious Model I 2 Wireless $99.99 2026-05-08 Wireless ergonomic gaming mouse with customizable buttons. View Glorious gaming mice pricing.

Common integrations

  • Glorious Core Software: Essential for configuring DPI, polling rate, button assignments, macros, RGB lighting, and firmware updates. Available for download from the Glorious Core software download page.
  • Windows/macOS: Operates natively as a plug-and-play device. Software functionality is primarily Windows-based.
  • PC Gaming Platforms: Compatible with all major PC gaming platforms and launchers (Steam, Epic Games Store, Battle.net, etc.).

Alternatives

  • Logitech G: Offers a wide range of gaming mice, including ergonomic options like the G502 X series, known for their HERO sensors and Lightspeed wireless technology.
  • Razer: Provides numerous gaming mice, with popular models like the DeathAdder V3 Pro known for its lightweight design and high-performance optical sensors.
  • SteelSeries: Features ergonomic and ambidextrous gaming mice such as the Aerox series, focusing on lightweight designs and AquaBarrier protection.
  • Zowie by BenQ: Known for its focus on esports, offering mice with simpler designs and robust performance, often preferred by professional players for their reliable sensors and specific shapes.
  • Pulsar Gaming Gears: Specializes in lightweight, high-performance gaming mice, often featuring popular sensor implementations and minimalist designs for competitive play.

Getting started

To begin using the Glorious Model I 2 Wireless, follow these steps:

  1. Charge the Mouse: Connect the included USB-C Ascended Cable to the mouse and a USB-A port on your computer. Allow the mouse to charge fully before initial wireless use.
  2. Connect Wirelessly: Insert the 2.4 GHz wireless dongle into an available USB-A port on your computer. The mouse should automatically connect.
  3. Connect Wired (Optional): If preferred, or if the battery is depleted, connect the USB-C Ascended Cable directly from the mouse to your computer.
  4. Install Glorious Core Software: Download and install the Glorious Core software from the official Glorious website. This software is essential for customizing DPI settings, programming buttons, adjusting RGB lighting, and updating firmware.
  5. Customize Settings: Open Glorious Core. Here you can adjust DPI stages, set polling rate, configure lift-off distance, assign functions to all nine buttons (including macros), and personalize the RGB lighting effects. Experiment with the interchangeable side buttons to find your preferred ergonomic setup.
  6. Test Performance: Once configured, test the mouse in your preferred games to fine-tune settings and ensure optimal performance for your playstyle. Pay attention to tracking accuracy and button responsiveness.

For advanced users or developers looking to integrate mouse input into custom applications, standard operating system APIs can be utilized. Below is a basic Python example demonstrating how to detect mouse events, which can be extended for more complex interactions:


import pynput

def on_move(x, y):
    # print(f'Mouse moved to ({x}, {y})')
    pass # Implement custom logic for mouse movement

def on_click(x, y, button, pressed):
    if pressed:
        print(f'Mouse button {button} pressed at ({x}, {y})')
        # Implement custom logic for button press
    else:
        print(f'Mouse button {button} released at ({x}, {y})')
        # Implement custom logic for button release

def on_scroll(x, y, dx, dy):
    if dy > 0:
        print(f'Mouse scrolled up at ({x}, {y})')
        # Implement custom logic for scroll up
    elif dy < 0:
        print(f'Mouse scrolled down at ({x}, {y})')
        # Implement custom logic for scroll down

# Collect events until released
with pynput.mouse.Listener(
        on_move=on_move,
        on_click=on_click,
        on_scroll=on_scroll) as listener:
    listener.join()

# To stop the listener from another thread, you would call listener.stop()

This Python script uses the pynput library to listen for mouse movements, clicks, and scroll events. While the Glorious Core software handles hardware-level customization, understanding these event hooks can be useful for developing custom input analysis tools or accessibility features. Ensure pynput is installed (pip install pynput) before running this example. This example showcases basic event detection, which can be expanded to log input patterns, create custom hotkeys, or integrate with other applications that require detailed mouse input data beyond what standard gaming software provides.