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.

web: trim install methods

+3 -4
+3 -4
web/src/pages/LoggedOutHome.tsx
··· 16 16 })), 17 17 [discovered], 18 18 ); 19 - const [tab, setTab] = useState<"pip" | "uv" | "brew" | "telnet">("pip"); 19 + const [tab, setTab] = useState<"brew" | "uv" | "telnet">("brew"); 20 20 const [copied, setCopied] = useState(false); 21 21 usePageTitle("atbbs"); 22 22 23 23 const installCommands: Record<string, string> = { 24 - pip: "pip install atbbs\natbbs", 24 + brew: "brew install alyraffauf/tap/atbbs\natbbs", 25 25 uv: "uv tool install atbbs\natbbs", 26 - brew: "brew install alyraffauf/tap/atbbs\natbbs", 27 26 telnet: "telnet tel.atbbs.xyz", 28 27 }; 29 28 ··· 81 80 <div className="border-t border-neutral-800 py-4"> 82 81 <h2 className="text-neutral-300 mb-4">Better yet, use your terminal</h2> 83 82 <div className="flex gap-4 border-b border-neutral-800 mb-4"> 84 - {(["pip", "uv", "brew", "telnet"] as const).map((installer) => ( 83 + {(["brew", "uv", "telnet"] as const).map((installer) => ( 85 84 <button 86 85 key={installer} 87 86 onClick={() => setTab(installer)}