hackernews-TUI

hackernews_tui is a Terminal UI to browse Hacker News written in Rust.

The application mainly consists of the following views:

Table of Contents

Install

Using cargo

Run cargo install hackernews_tui to install the application as a binary.

Arch Linux

Run yay -S hackernews_tui to install the application as an AUR package.

NetBSD

Using the package manager

```shell

pkgin install hackernews-tui

```

Building from source

```shell $ cd /usr/pkgsrc/www/hackernews-tui

make install

```

Examples

Story View - Front Page: Example of a Story View - Front Page

Comment View: Example of a Comment View

Story Search View Example of a Story Search View

Documentation

Keyboard shortcuts

In each View, press <ctrl-h> to see a list of supported keyboard shortcuts and their functionalities.

Global key shortcuts:

In case the above shortcuts don't work, you can always use the corresponding buttons at the bottom of the View: Footer buttons

Key shortcuts for each View:

StoryView

CommentView

SearchView

In SearchView, there are two modes: Navigation and Search. The default mode is Search.

Search mode is similar to Vim's Insert mode, in which users can input the query string.

Navigation mode allows the SearchView to behave like a StoryView with all StoryView shortcuts enabled.

Switch mode key shortcuts:

Navigation mode supports all StoryView's key shortcuts.

Configuration

By default, the application will look for ~/.config/hn-tui.toml as its configuration file.

You can specify the path by specifying the -c or --config argument when running the application:

shell hackernews_tui -c ~/.config/hn-tui.toml

For the further information about the config options, please look into the example config file for references.

Note: all config options (as included in the example config file) are required. You can download the example file then modify it based on your needs.