m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-19 00:53:42 -05:00

Updated Examples (markdown)

ngenisis
2019-04-25 22:26:43 -05:00
parent b2ac6df440
commit ec345ce767

@@ -47,6 +47,7 @@ Table of Contents
* [BibTeX](#bibtex)
* [Docker](#docker)
* [buku](#buku)
* [i3](#i3)
@@ -1198,4 +1199,15 @@ fb() {
buku -o "$index"
done
}
```
### i3
Fuzzy search desktop entries and launch the appropriate application.
```
i3-dmenu-desktop --dmenu=fzf
```
Display in a floating window. Add this to your i3 config file (this example uses termite, but any terminal emulator that allows setting the window title can be used):
```
bindsym $mod+d exec --no-startup-id termite -t 'fzf-menu' -e 'i3-dmenu-desktop --dmenu=fzf'
for_window [title="fzf-menu"] floating enable
```