Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ install_requires =
click
click-log
cloup
emoji
emoji<2.0.0
inotify-simple
jinja2
networkx
Expand Down
4 changes: 2 additions & 2 deletions streamdeckfs/commands/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ def inspect():
for deck in decks.values():
info = deck.info
click.echo(f"* Deck {info['serial']}{'' if deck.info['connected'] else ' (already connected elsewhere)'}")
click.echo(f"\t - Type: {info['type']}")
click.echo(f"\t - Type: {info['model']}")
click.echo(f"\t - ID: {info['id']}")
click.echo(f"\t - Serial: {info['serial']}")
click.echo(f"\t - Firmware Version: {info['firmware']}")
click.echo(f"\t - Key Count: {info['nb_keys']} (in a {info['rows']}x{info['cols']} grid)")
click.echo(f"\t - Key Count: {info['nb_keys']} (in a {info['nb_rows']}x{info['nb_cols']} grid)")
click.echo(f"\t - Key Images: {info['key_width']}x{info['key_height']} pixels, {info['format']} format")

if deck.info["connected"]:
Expand Down