Update 2022-12-07 14:39 Linux/x86_64

This commit is contained in:
Stefan Hagen 2022-12-07 14:39:35 +01:00
parent 889ec09621
commit f24d0e198e
1 changed files with 20 additions and 0 deletions

20
.bin/c Executable file
View File

@ -0,0 +1,20 @@
#!/bin/sh
F=$(find $HOME/.config/* \
$HOME/.* \
-maxdepth 1 \
-type f \
\( -name "*.cfg" \
-o -name "*.conf" \
-o -name "*.lua" \
-o -name "*.sh" \
-o -name "*.xsession*" \
-o -name "*rc" \
-o -name ".Xresources" \
-o -name ".Xdefaults" \
-o -name ".ini" \
-o -name "config" \
\) | sort -u \
| fzf -e +s --preview='cat {}' );
[ -z "$F" ] || vim "$F";