1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-23 06:25:26 +00:00
toot/toot/cli/tui.py
2023-12-03 13:53:52 +01:00

17 lines
486 B
Python

from typing import NamedTuple
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()