Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

tui: respect platform download folder

+4 -2
+4 -2
tui/screens/thread.py
··· 221 221 async def _do_save(self, post: Post) -> None: 222 222 from pathlib import Path 223 223 224 - downloads = Path.home() / "Downloads" 225 - downloads.mkdir(exist_ok=True) 224 + from platformdirs import user_downloads_dir 225 + 226 + downloads = Path(user_downloads_dir()) 227 + downloads.mkdir(parents=True, exist_ok=True) 226 228 227 229 client = self.app.http_client 228 230 for att in post.attachments: