1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-09-22 04:25:55 -04:00
toot/toot/cli/tui.py
2023-12-05 09:25:02 +01:00

18 lines
458 B
Python

import click
from toot.cli.base import Context, cli, pass_context
from toot.tui.app import TUI, TuiOptions
@cli.command()
@click.option(
"--relative-datetimes",
is_flag=True,
help="Show relative datetimes in status list"
)
@pass_context
def tui(ctx: Context, relative_datetimes: bool):
"""Launches the toot terminal user interface"""
options = TuiOptions(relative_datetimes, ctx.color)
TUI.create(ctx.app, ctx.user, options).run()