9d56d3e272
Also add simple description comment to all script.
6 lines
178 B
Bash
Executable File
6 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Menu with config files to edit in text editor.
|
|
|
|
find "$HOME"/.config/ -maxdepth 3 -type f | fzf --preview "cat {}" --height 25 --layout reverse | xargs -r "$EDITOR"
|