This commit is contained in:
Rui Carmo
2026-01-21 23:53:57 +00:00
commit a0e31d43fd
52 changed files with 6312 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import os
from textual.app import App, ComposeResult
from textual.widgets import Pretty
class TerminalEnv(App):
def compose(self) -> ComposeResult:
yield Pretty(dict(os.environ))
if __name__ == "__main__":
TerminalEnv().run()