https://github.com/rolehippie/fzf
Ansible role to install the command-line fuzzy finder
https://github.com/rolehippie/fzf
ansible ansible-role hacktoberfest role
Last synced: 6 months ago
JSON representation
Ansible role to install the command-line fuzzy finder
- Host: GitHub
- URL: https://github.com/rolehippie/fzf
- Owner: rolehippie
- License: apache-2.0
- Created: 2020-10-22T18:10:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2026-01-15T05:53:46.000Z (6 months ago)
- Last Synced: 2026-01-15T12:02:13.810Z (6 months ago)
- Topics: ansible, ansible-role, hacktoberfest, role
- Language: Nix
- Homepage:
- Size: 261 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# fzf
[](https://github.com/rolehippie/fzf)
[](https://github.com/rolehippie/fzf/actions/workflows/general.yml)
[](https://github.com/rolehippie/fzf/actions/workflows/docs.yml)
[](https://github.com/rolehippie/fzf/actions/workflows/galaxy.yml)
[](https://github.com/rolehippie/fzf/blob/master/LICENSE)
[](https://galaxy.ansible.com/rolehippie/fzf)
Ansible role to install the command-line fuzzy finder.
## Sponsor
Building and improving this Ansible role have been sponsored by my current and previous employers like **[Cloudpunks GmbH](https://cloudpunks.de)** and **[Proact Deutschland GmbH](https://www.proact.eu)**.
## Table of contents
- [Requirements](#requirements)
- [Default Variables](#default-variables)
- [fzf_binary_arch](#fzf_binary_arch)
- [fzf_binary_download](#fzf_binary_download)
- [fzf_static_version](#fzf_static_version)
- [fzf_wrapper_download](#fzf_wrapper_download)
- [Discovered Tags](#discovered-tags)
- [Dependencies](#dependencies)
- [License](#license)
- [Author](#author)
---
## Requirements
- Minimum Ansible version: `2.10`
## Default Variables
### fzf_binary_arch
Architecture of the static binary
#### Default value
```YAML
fzf_binary_arch: "{{ 'arm8' if ansible_architecture == 'aarch64' else 'amd64' }}"
```
### fzf_binary_download
URL to download the static binary
#### Default value
```YAML
fzf_binary_download: https://github.com/junegunn/fzf-bin/releases/download/{{
fzf_static_version }}/fzf-{{ fzf_static_version }}-linux_{{ fzf_binary_arch
}}.tgz
```
### fzf_static_version
Version of the static release
#### Default value
```YAML
fzf_static_version: 0.21.1
```
### fzf_wrapper_download
URL to download the tmux wrapper
#### Default value
```YAML
fzf_wrapper_download: https://raw.githubusercontent.com/junegunn/fzf/{{
fzf_static_version }}/bin/fzf-tmux
```
## Discovered Tags
**_fzf_**
## Dependencies
- None
## License
Apache-2.0
## Author
[Thomas Boerger](https://github.com/tboerger)