1
0
Fork 0
Go to file
マリウス a980ea8e6f
Added rendered VHS gif
2023-01-08 17:12:34 -05:00
.github Added FUNDING.yml, release.yml 2023-01-05 15:40:13 -05:00
aggregator Implemented connect check, fixed smaller issues 2023-01-06 23:48:21 -05:00
cmd Implemented connect check, fixed smaller issues 2023-01-06 23:48:21 -05:00
config Added Selector to Theme, fixed formatting 2023-01-07 00:11:44 -05:00
models Renamed gobbs -> neonmodem 2023-01-06 19:46:41 -05:00
system Implemented connect check, fixed smaller issues 2023-01-06 23:48:21 -05:00
ui Changed banner to simpler ASCII art 2023-01-08 16:37:32 -05:00
.editorconfig Added boilerplate 2022-12-28 21:11:23 -05:00
.gitignore Renamed gobbs -> neonmodem 2023-01-06 19:46:41 -05:00
.goreleaser.yaml Added README.md, added changelog config 2023-01-05 15:42:20 -05:00
LICENSE Added LICENSE 2023-01-05 15:39:41 -05:00
Makefile Renamed gobbs -> neonmodem 2023-01-06 19:46:41 -05:00
README.md Updated README.md 2023-01-07 02:00:18 -05:00
go.mod Renamed gobbs -> neonmodem 2023-01-06 19:46:41 -05:00
go.sum Implemented image rendering 2023-01-06 18:57:50 -05:00
neonmodem.gif Added rendered VHS gif 2023-01-08 17:12:34 -05:00
neonmodem.go Renamed gobbs -> neonmodem 2023-01-06 23:48:02 -05:00
neonmodem.tape Added tape file for recordings 2023-01-08 17:10:49 -05:00
neonmodem.txt Added ASCII logo 2023-01-08 17:10:33 -05:00

README.md

Neon Modem Overdrive

Neon Modem Overdrive is a BBS-like command line client that supports Discourse, Lemmy, Lobsters and Hacker News as backends and seamlessly integrates all of them into a streamlined TUI. And yes, you heard that right, I really called it Neon Modem Overdrive.

Neon Modem is built in Go, using Charm's Bubble Tea TUI framework, but implements an own window manager (or compositor if you want) that allows it to use a third dimension, on top of the two dimensional rendering that Bubble Tea offers today. With that it is possible to display dialogs on top of one another, in order to offer a smoother UI experience.

Build

To build this software, simply run make within the cloned repository:

make

The binary is called neonmodem

Configuration

Before launching Neon Modem Overdrive it requires initial setup of the services (a.k.a. systems). Run neonmodem connect --help to find out more.

Connecting a service will add it to the configuration TOML, usually under ~/.config/neonmodem.toml.

Systems

Discourse

For connecting to a Discourse instance you'll need to have an active account on that instance. Neon Modem will store the instance URL, username and a user key, but no password.

neonmodem connect --type discourse --url https://www.keebtalk.com

Lemmy

For connecting to a Lemmy instance you'll need to have an active account on that instance. Neon Modem will store the instance URL, username and password.

neonmodem connect --type lemmy --url https://lemmy.ml

Lobsters

For connecting to a Lobsters instance you won't need an account, as the integration is read-only. Neon Modem will store the instance URL.

neonmodem connect --type lobsters --url https://lobste.rs

Hacker News

For connecting to Hacker News you won't need an account, as the integration is read-only.

neonmodem connect --type hackernews

UI

The UI can be fully customized via the Theme section in the configuration file. To reset settings, all Theme related configurations can simply be deleted from the configuration.

Run

After setup Neon Modem can be launched by calling neonmodem without any arguments. It will briefly display a splash screen, then switch to the posts list, which will aggregate the latest posts from all connected systems. A progress icon will be visible in the header while network requests are loading.

Navigation

In the posts list:

  • j: Scroll down
  • k: Scroll up
  • r/enter: Open selected post
  • n: Write new post in on the system/forum of the current selected post
  • C-e: Open system selector
  • C-t: Open forum selector
  • q/esc: Quit

In the post view dialog:

  • r: Reply to post
  • #r: Reply to specific comment # in post, e.g. 3r to reply to the reply #3
  • esc: Close dialog

In the new post / new reply dialog:

  • tab: Switch between elements (only in new post dialog)
  • C-s: Submit post/reply
  • esc: Close dialog

FAQ

  • Q: The post view is really slow when using a large terminal.
    A: Turning off image rendering will improve performance significantly on very large terminal windows and can be done by setting RenderImages = false in the configuration.
  • Q: Can I haz Reddit?
    A: I won't do the heavy lifting of integrating a proprietary platform with a $15 billion valuation that can't even be bothered to maintain a solid set of client API libraries. If you feel like, go ahead and PR!