Skip to content
This repository was archived by the owner on Apr 18, 2026. It is now read-only.

Commit 20fe252

Browse files
Mini Braxclaude
authored andcommitted
fix: add Stream Deck XL and other missing device layouts to MODEL_LAYOUTS
The MODEL_LAYOUTS dict only contained the Original (20GBA9901) and Virtual (UI Stream Deck) models. Any other device — including the XL — fell through to the 5×3 fallback, making it impossible to address all 32 keys. Added models: - Stream Deck MK.2 (20GAA9901) — 5×3, 15 keys - Stream Deck XL (20GAT9902) — 8×4, 32 keys - Stream Deck XL rev2 (20GBA9902) — 8×4, 32 keys - Stream Deck Mini (20GAI9501) — 3×2, 6 keys - Stream Deck Neo (20GBD9901) — 4×2, 8 keys + touchscreen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 42f0709 commit 20fe252

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

profile_manager.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,13 @@
5151
}
5252

5353
MODEL_LAYOUTS: dict[str, tuple[int, int]] = {
54-
"20GBA9901": (5, 3),
55-
"UI Stream Deck": (4, 2),
54+
"20GBA9901": (5, 3), # Stream Deck Original (15 keys)
55+
"20GAA9901": (5, 3), # Stream Deck MK.2 (15 keys)
56+
"20GAT9902": (8, 4), # Stream Deck XL (32 keys)
57+
"20GBA9902": (8, 4), # Stream Deck XL rev2 (32 keys)
58+
"20GAI9501": (3, 2), # Stream Deck Mini (6 keys)
59+
"20GBD9901": (4, 2), # Stream Deck Neo (8 keys + touchscreen)
60+
"UI Stream Deck": (4, 2), # Virtual Stream Deck
5661
}
5762

5863
HEX_COLOR_PATTERN = re.compile(r"^#[0-9a-fA-F]{6}$")

0 commit comments

Comments
 (0)