Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rtfmkiesel/ffs

Fuzzy search your Firefox history
https://github.com/rtfmkiesel/ffs

firefox golang

Last synced: 23 days ago
JSON representation

Fuzzy search your Firefox history

Awesome Lists containing this project

README

        

# ffs

Fuzzy search your Firefox history.

_This is a simple PoC, thrown together in sub 1h and currently only supporting Linux and the default Firefox profile._

## Usage

```sh
ffs

# e.g.
ffs "linkedin.com/in"
ffs "github*poc"
```

## Install/Build

```sh
CGO_ENABLED=1 go install -ldflags="-s -w" github.com/rtfmkiesel/ffs@latest
```

```sh
git clone https://github.com/rtfmkiesel/ffs
cd ffs

# assuming you have go/bin in your path
CGO_ENABLED=1 go install -ldflags="-s -w" .
ffs

# else
CGO_ENABLED=1 go build -ldflags="-s -w" .
./ffs
```