4 lines
116 B
Plaintext
4 lines
116 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
find "$HOME"/.config/ -type f | fzf --preview "cat {}" --height 25 --layout reverse | xargs -r "$EDITOR"
|