Wiktor Zykubek 65d6817092 Add 'shelp' script
Also add simple description comment to all script.
2020-05-15 20:56:33 +02:00

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"