2023-01-06 20:10:45 -05:00
|
|
|
Neon Modem Overdrive
|
|
|
|
--------------------
|
2023-01-05 15:42:20 -05:00
|
|
|
|
2023-07-03 20:30:36 -04:00
|
|
|
[Chat on Matrix](https://matrix.to/#/%21PHlbgZTdrhjkCJrfVY%3Amatrix.org)
|
|
|
|
|
2023-01-08 17:12:45 -05:00
|
|
|
![Neon Modem Overdrive](splashscreen.png)
|
|
|
|
|
2023-01-09 11:14:19 -05:00
|
|
|
[*Neon Modem Overdrive*][neonmodem] is a [BBS][wiki-bbs]-style command line client that
|
2023-01-06 20:10:45 -05:00
|
|
|
supports [Discourse][discourse], [Lemmy][lemmy], [Lobsters][lobsters] and
|
2023-01-09 11:11:51 -05:00
|
|
|
[Hacker News][hackernews] as backends, and seamlessly integrates all of them
|
|
|
|
into a streamlined TUI. And yes, you heard that right, I really did call it
|
|
|
|
*Neon Modem Overdrive*.
|
2023-01-06 20:10:45 -05:00
|
|
|
|
2023-01-07 02:00:18 -05:00
|
|
|
*Neon Modem* is built in Go, using [Charm's Bubble Tea][bubbletea] 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.
|
2023-01-06 20:10:45 -05:00
|
|
|
|
2023-01-10 11:34:26 -05:00
|
|
|
[More info here!](https://xn--gckvb8fzb.com/get-the-bbs-scene-vibes-back-with-neonmodem-overdrive/)
|
|
|
|
|
2023-01-11 01:36:27 -05:00
|
|
|
|
|
|
|
## Support
|
|
|
|
|
2023-01-14 15:14:43 -05:00
|
|
|
| System | Available | List Forums | List Posts | List Replies | Create Post | Create Reply |
|
|
|
|
| :----------------- | :----------------: | :----------------: | :----------------: | :----------------: | :----------------: | :----------------: |
|
|
|
|
| Discourse | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
|
|
|
|
| Lemmy | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
|
|
|
|
| Lobsters | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | |
|
|
|
|
| Hacker News | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | |
|
|
|
|
| RSS+Disqus/Isso(?) | | | | | | |
|
|
|
|
| Superhighway84 | | | | | | |
|
|
|
|
| NNTP | | | | | | |
|
2023-01-11 01:36:27 -05:00
|
|
|
|
|
|
|
|
2023-01-06 20:10:45 -05:00
|
|
|
[neonmodem]: https://neonmodem.com
|
2023-01-09 11:14:19 -05:00
|
|
|
[wiki-bbs]: https://en.wikipedia.org/wiki/Bulletin_board_system
|
2023-01-06 20:10:45 -05:00
|
|
|
[discourse]: https://github.com/discourse
|
|
|
|
[lemmy]: https://github.com/LemmyNet
|
|
|
|
[lobsters]: https://github.com/lobsters/lobsters
|
|
|
|
[hackernews]: https://news.ycombinator.com
|
|
|
|
[bubbletea]: https://github.com/charmbracelet/bubbletea
|
|
|
|
|
|
|
|
|
2023-01-11 00:04:22 -05:00
|
|
|
## Installation
|
2023-01-06 20:10:45 -05:00
|
|
|
|
2023-01-11 00:04:22 -05:00
|
|
|
### From Release
|
|
|
|
|
|
|
|
Download the [latest
|
|
|
|
release](https://github.com/mrusme/neonmodem/releases/latest) and unpack
|
|
|
|
it:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ tar -xzf ./neonmodem_*.tar.gz
|
|
|
|
```
|
|
|
|
|
|
|
|
The binary is called `neonmodem`. Feel free to move it to e.g. `/usr/local/bin`.
|
|
|
|
|
|
|
|
|
|
|
|
### From Sauce
|
|
|
|
|
|
|
|
Clone this repository
|
|
|
|
|
|
|
|
- from [GitHub](https://github.com/mrusme/neonmodem)
|
|
|
|
```sh
|
|
|
|
$ git clone git@github.com:mrusme/neonmodem.git
|
|
|
|
```
|
2024-04-13 21:17:11 -04:00
|
|
|
- from
|
|
|
|
[Radicle](https://app.radicle.xyz/nodes/seed.xn--gckvb8fzb.com/rad:z4GExf1wpsyn6WDc2dNAxVc6LPS9G)
|
|
|
|
```sh
|
|
|
|
$ rad clone rad:z4GExf1wpsyn6WDc2dNAxVc6LPS9G
|
|
|
|
```
|
2023-01-11 00:04:22 -05:00
|
|
|
|
|
|
|
Then cd into the cloned directory and run:
|
2023-01-06 20:10:45 -05:00
|
|
|
|
|
|
|
```sh
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
2023-01-11 00:04:22 -05:00
|
|
|
The binary is called `neonmodem`. Feel free to move it to e.g. `/usr/local/bin`.
|
2023-01-06 20:10:45 -05:00
|
|
|
|
2023-07-08 17:45:16 -04:00
|
|
|
For Arch Linux an AUR package is available here: https://aur.archlinux.org/packages/neonmodem
|
|
|
|
|
|
|
|
Install with your favorite AUR helper.
|
2023-01-06 20:10:45 -05:00
|
|
|
|
2024-01-12 05:13:36 -05:00
|
|
|
On NetBSD, a package is available from the official repositories.
|
|
|
|
To install it, simply run `pkgin install neonmodem`.
|
|
|
|
|
2023-01-06 23:03:43 -05:00
|
|
|
## Configuration
|
2023-01-06 20:10:45 -05:00
|
|
|
|
2023-01-06 23:03:43 -05:00
|
|
|
Before launching *Neon Modem Overdrive* it requires initial setup of the
|
|
|
|
services (a.k.a. *systems*). Run `neonmodem connect --help` to find out more.
|
|
|
|
|
2024-08-01 15:04:44 -04:00
|
|
|
Connecting a service will add it to the configuration TOML. The configuration
|
|
|
|
file location depends on the operating system. On Unix systems, it is in
|
|
|
|
`$XDG_CONFIG_HOME/neonmodem.toml` if `$XDG_CONFIG_HOME` is non-empty, otherwise
|
|
|
|
`$HOME/.config/neonmodem.toml` is used. On Darwin, the configuration is in
|
|
|
|
`$HOME/Library/Application Support/neonmodem.toml`. On Windows, it is in
|
|
|
|
`%AppData%\neonmodem.toml`.
|
2023-01-06 23:03:43 -05:00
|
|
|
|
|
|
|
|
|
|
|
### Systems
|
|
|
|
|
2023-01-11 00:04:22 -05:00
|
|
|
|
2023-01-06 23:03:43 -05:00
|
|
|
#### 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.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
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.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
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.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
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.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
neonmodem connect --type hackernews
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### UI
|
|
|
|
|
|
|
|
The UI can be fully customized via the `Theme` section in the configuration
|
2023-01-10 13:05:45 -05:00
|
|
|
file. To reset settings, all theme related configurations can simply be deleted
|
2023-01-06 23:03:43 -05:00
|
|
|
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.
|
|
|
|
|
|
|
|
|
2023-01-08 17:12:45 -05:00
|
|
|
### Usage
|
|
|
|
|
|
|
|
![Neon Modem Overdrive](neonmodem.gif)
|
|
|
|
|
|
|
|
|
|
|
|
#### Navigation
|
2023-01-06 23:03:43 -05:00
|
|
|
|
|
|
|
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
|
2024-08-01 15:04:44 -04:00
|
|
|
- `esc`: Quit
|
2023-01-06 23:03:43 -05:00
|
|
|
|
|
|
|
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
|
2023-01-10 14:38:58 -05:00
|
|
|
- `z`: Load older replies (if available)
|
2023-01-06 23:03:43 -05:00
|
|
|
- `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.
|
2023-01-06 23:20:51 -05:00
|
|
|
- **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!
|
2023-01-05 15:42:20 -05:00
|
|
|
|