Small fixes to readme

Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
Marko Korhonen 2019-08-28 22:18:17 +03:00
parent e4371370c1
commit b0bc985e46
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5

View file

@ -2,22 +2,22 @@
This is a script heavily inspired by [rofi-pass](https://github.com/carnager/rofi-pass), but with FZF instead of Rofi. There's still a lot to do and this is just the first version. As it is now, it is only compatible with [Sway](https://github.com/swaywm/sway) (see TODO section) This is a script heavily inspired by [rofi-pass](https://github.com/carnager/rofi-pass), but with FZF instead of Rofi. There's still a lot to do and this is just the first version. As it is now, it is only compatible with [Sway](https://github.com/swaywm/sway) (see TODO section)
## TODO ### TODO
- Figure out a way to keep ydotool running after the popup terminal closes. - Figure out a way to keep ydotool running after the popup terminal closes.
- Add detection for different fields, and show them only if they are there. Right now every field is hardcoded - Add detection for different fields, and show them only if they are there. Right now every field is hardcoded
- Add copy to clipboard option - Add copy to clipboard option
## Usage ### Usage
**AUR package coming soon** **AUR package coming soon**
Add a keybind to your Sway config like so: Add a keybind to your Sway config like so:
``` ```bash
bindsym $mod+p exec $term --class fzf-pass -e sh -c path/to/fzf-pass.sh bindsym $mod+p exec $term --class fzf-pass -e sh -c path/to/fzf-pass.sh
``` ```
To make instances of fzf-pass float, here's how you can do it: To make instances of fzf-pass float, here's how you can do it:
``` ```bash
for_window [app_id="fzf-pass"] focus, floating enabled, border pixel 1 for_window [app_id="fzf-pass"] focus, floating enabled, border pixel 1
``` ```