6 lines
178 B
Plaintext
Raw Normal View History

2020-05-13 08:54:58 +02:00
#!/bin/sh
# Menu with config files to edit in text editor.
2020-05-15 16:19:27 +02:00
find "$HOME"/.config/ -maxdepth 3 -type f | fzf --preview "cat {}" --height 25 --layout reverse | xargs -r "$EDITOR"