fix index column alignment

This commit is contained in:
onyx-and-iris 2025-05-26 22:14:30 +01:00
parent c4f3f1713f
commit ca0f01ef79
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2025-present onyx-and-iris <code@onyxandiris.online>
#
# SPDX-License-Identifier: MIT
__version__ = "0.13.2"
__version__ = "0.13.3"

View File

@ -33,7 +33,7 @@ def list_monitors(ctx: typer.Context):
)
table = Table(title='Available Monitors', padding=(0, 2))
table.add_column('Index', justify='right', style='cyan')
table.add_column('Index', justify='center', style='cyan')
table.add_column('Name', style='cyan')
for index, monitor in monitors: