trezorctl debug show-text "My hovercraft is @@BOLD full of @@BR eels. @@NORMAL Call the porter, @@BR there is a @@MONO frog @@NORMAL in my @@BR bidet."
```
![Screenshot04](show-text-04.png)
### Line spacing
Adding another `@@BR` after a `@@BR` will leave one line empty -- just like pressing
\<Enter\> twice.
If you don't want a full empty line, you can make a half-break with `@@BR_HALF`.
```sh
trezorctl debug show-text "Line one. @@BR @@BR Line two. @@BR @@BR_HALF Line three."
To change the icon, you can pick [an icon name from here](https://github.com/trezor/trezor-firmware/blob/master/core/src/trezor/ui/style.py#L51-L71) and specify it with the `-i` option:
The icons are defined as shapes, and you can specify a custom color [from the list](https://github.com/trezor/trezor-firmware/blob/master/core/src/trezor/ui/style.py#L15-L44) with the `-c` option:
trezorctl debug show-text -c RED "My hovercraft is full."
```
### Putting it all together
Here is how to reproduce the confirmation screen after the wallet is created:
```sh
trezorctl debug show-text -h "Success" -i CONFIRM -c GREEN "@@BOLD New wallet created @@BR successfully! @@BR @@BR_HALF @@NORMAL You should back up your @@BR new wallet right now."