Renders the time in the center of the screen.
| 39 | |
| 40 | |
| 41 | class Clock: |
| 42 | """Renders the time in the center of the screen.""" |
| 43 | |
| 44 | def __rich__(self) -> Text: |
| 45 | return Text(datetime.now().ctime(), style="bold magenta", justify="center") |
| 46 | |
| 47 | |
| 48 | layout["header"].update(Clock()) |