feat: pretty print

This commit is contained in:
Ruidy 2021-07-05 20:18:06 +02:00
parent cdc2dbe984
commit 89beba48cc

View file

@ -24,8 +24,10 @@ def main(
subprocess.run("pbcopy", universal_newlines=True, input=password)
typer.echo(f"🔐 {password}")
typer.echo("The password has been copied to your clipboard 😉")
typer.echo(typer.style(f"🔐 {password}", fg=typer.colors.GREEN, bold=True))
typer.echo(
"The password has been copied to your clipboard 😉\nPaste it using cmd + v"
)
if __name__ == "__main__":