Skip to content

Commit 6e4f77b

Browse files
committed
sponsorship message
1 parent c1ba0d9 commit 6e4f77b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/textual/__main__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
1+
from rich import print
2+
from rich.panel import Panel
3+
14
from textual.demo.demo_app import DemoApp
25

36
if __name__ == "__main__":
47
app = DemoApp()
58
app.run()
9+
print(
10+
Panel.fit(
11+
"[b magenta]Hope you liked the demo![/]\n\n"
12+
"Please consider sponsoring me if you get value from my work.\n\n"
13+
"Even the price of a ☕ can brighten my day!\n\n"
14+
"https://github.com/sponsors/willmcgugan",
15+
border_style="red",
16+
title="Consider sponsoring",
17+
)
18+
)

0 commit comments

Comments
 (0)