hackernews-TUI

hackernews_tui is a Terminal UI to browse Hacker News with vim-like key bindings.

hackernews_tui is written in Rust with the help of Cursive TUI library. It uses HN Algolia search APIs to get Hacker News data.

The application mainly consists of the following views:

Why hackernews-TUI?

If you are either

This application is a right tool for you :muscle:

Table of Contents

Install

Using cargo

Install the latest version from crates.io

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

Build from the master branch

Run

```shell

git clone https://github.com/aome510/hackernews-TUI.git

cd hackernews-TUI

cargo build --release

```

to build the application then run

```shell

./target/release/hackernews_tui

```

to run the application

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

Example of a Story View - Front Page

Search View

Example of a Search View

Comment View

Example of a Comment View

Shortcuts

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

Example of a Help View

Global key shortcuts

Key shortcuts for each View

Story View shortcuts

Comment View shortcuts

Search View shortcuts

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.

Key shortcuts:

Navigation mode also supports all StoryView's key shortcuts beside q,w,e,r.

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 refer to the example config file by running hackernews_tui --example-config.

Note: all config options (as included in the example config file) are required. You can run

shell hackernews_tui --example-config > ~/.config/hn-tui.toml

then modify the config options in ~/.config/hn-tui.toml based on your preferences.