A fancy terminal browser for the Gemini protocol https://github.com/makew0rld/amfora
Go to file
makeworld abfdb58690 🐛 Removing TryExec helps get Amfora to show up 2020-06-24 19:11:56 -04:00
bookmarks 🚸 Bookmarks are sorted alphabetically - fixes #17 2020-06-24 13:18:23 -04:00
cache Add bookmarks! - fixes #10 fixes #13 2020-06-23 20:07:25 -04:00
client 🐛 Use domain from URL for TOFU, not from cert 2020-06-24 13:31:01 -04:00
config Add bookmarks! - fixes #10 fixes #13 2020-06-23 20:07:25 -04:00
display 🐛 Use domain from URL for TOFU, not from cert 2020-06-24 13:31:01 -04:00
logger 🎉 Initial commit, full featured 2020-06-18 16:54:48 -04:00
renderer 🐛 Fix heading and link styling when color is disabled 2020-06-24 12:01:09 -04:00
structs Add bookmarks! - fixes #10 fixes #13 2020-06-23 20:07:25 -04:00
webbrowser 🎉 Initial commit, full featured 2020-06-18 16:54:48 -04:00
.gitignore Tidy up 2020-06-18 17:08:32 -04:00
CHANGELOG.md 🔖 Bump to v1.1.0 2020-06-24 13:52:44 -04:00
LICENSE Create LICENSE 2020-06-18 16:56:57 -04:00
NOTES.md 🐛 Add no-color UI elements - fixes #16 2020-06-24 11:37:32 -04:00
README.md 📝 Update README for release 2020-06-24 13:39:49 -04:00
amfora.desktop 🐛 Removing TryExec helps get Amfora to show up 2020-06-24 19:11:56 -04:00
amfora.go 🔖 Bump to v1.1.0 2020-06-24 13:52:44 -04:00
default-config.toml Add bookmarks! - fixes #10 fixes #13 2020-06-23 20:07:25 -04:00
demo-large.gif 📝 Update README with Gif 2020-06-18 19:10:45 -04:00
go.mod ⬆️ Status 21 is invalid now 2020-06-21 23:39:33 -04:00
go.sum Add bookmarks! - fixes #10 fixes #13 2020-06-23 20:07:25 -04:00
logo.png 🎉 Initial commit, full featured 2020-06-18 16:54:48 -04:00

README.md

Amfora

amphora logo
Image modified from: amphora by Alvaro Cabrera from the Noun Project

go reportcard license GPLv3

Demo GIF
Recording of v1.0.0

Amfora aims to be the best looking Gemini client with the most features... all in the terminal. It does not support Gopher or other non-Web protocols - check out Bombadillo for that.

It also aims to be completely cross platform, with full Windows support. If you're on Windows, I would not recommend using the default terminal software. Maybe use Cmder instead?

It fully passes Sean Conman's client torture test, including the new Unicode tests. It mostly passes the Egsam test.

Installation

Download a binary from the releases page. On Unix-based systems you might have to make the binary executable with chmod +x <filename>. On Windows, make sure you click "Advanced > Run anyway" after double-clicking, or something like that.

Unix systems can install the desktop entry file to get Amfora to appear when they search for applications (this doesn't entirely work yet):

curl -sSL https://raw.githubusercontent.com/makeworld-the-better-one/amfora/master/amfora.desktop -o ~/.local/share/applications/amfora.desktop
update-desktop-database ~/.local/share/applications

Usage

Just call amfora or amfora <url> on the terminal. On Windows it might be amfora.exe instead.

To determine the version, you can run amfora --version or amfora -v.

The project keeps many standard terminal keybindings and is intuitive. Press ? inside the application to pull up the help menu with a list of all the keybindings, and Esc to leave it. If you have used Bombadillo you will find it similar.

It is designed with large or fullscreen terminals in mind. For optimal usage, make your terminal fullscreen. It was also designed with a dark background terminal in mind, but please file an issue if the colour choices look bad on your terminal setup. It was tested with left-to-right languages, and will likely not work as well with right-to-left languages like Arabic.

Features / Roadmap

Features in italics are in the master branch, but not in the latest release.

  • URL browsing with TOFU and error handling
  • Tabbed browsing
  • Support ANSI color codes on pages, even for Windows
  • Styled page content (headings, links)
  • Basic forward/backward history, for each tab
  • Input (Status Code 10 & 11)
  • Multiple charset support (over 55)
  • Built-in search (uses GUS by default)
  • Bookmarks
  • Search in pages with Ctrl-F
  • Download pages and arbitrary data
  • Emoji favicons
    • See gemini://mozz.us/files/rfc_gemini_favicon.gmi for details
  • Full mouse support
  • Table of contents for pages
  • Full client certificate UX within the client
  • Subscribe to RSS and Atom feeds and display them
  • Support Markdown rendering
  • History browser

Configuration

The config file is written in the intuitive TOML file format. See default-config.toml for details. By default this file is available at ~/.config/amfora/config.toml, or $XDG_CONFIG_HOME/amfora/config.toml, if that variable is set.

On Windows, the file is in %APPDATA%\amfora\config.toml, which usually expands to C:\Users\<username>\AppData\Roaming\amfora\config.toml.

Libraries

Amfora ❤️ open source!

  • cview for the TUI
    • It's a fork of tview with PRs merged and active support
    • It uses tcell for low level terminal operations
  • Viper for configuration and TOFU storing
  • go-gemini, my forked and updated Gemini client/server library

License

This project is licensed under the GPL v3.0. See the LICENSE file for details.