clean up logic

This commit is contained in:
Jacob Janzen 2024-08-08 20:46:22 -05:00
parent 0286dc4925
commit fd9e1eafa2

View file

@ -7,22 +7,19 @@ create_ls_entry () {
echo "- [[https://jjanzen.ca/dotfiles/$1..][=../=]]" >> index.org
fi
find -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do
if [ "${dir}" != "*" ]; then
if [ "${dir}" != "*" ] && [ "${dir}" != ".git" ]; then
echo "- [[https://jjanzen.ca/dotfiles/$1${dir}][=${dir}/=]]" >> index.org
fi
done
echo "* Files" >> index.org
find -- . -maxdepth 1 -type f | sed 's/^\.\///' | while read -r file; do
if echo "${file}" | grep -q "\(\.tar\.gz$\|\*|^index\.org$\|^README\.md$\|^\.build\.yml$\|^install$\|^LICENSE$\)"; then
continue
elif [ "${file}" = ".wallpaper" ]; then
if [ "${file}" = ".wallpaper" ]; then
echo "- [[https://wallhaven.cc/w/vgryy5][=.wallpaper=]]" >> index.org
continue
fi
new_file=$(basename "$(grep -q '#+begin_src' "${file}" | head -1 | cut -d ' ' -f 4)")
elif echo "${file}" | grep -q "\.org$" && [ "${file}" != "index.org" ]; then
new_file=$(basename "$(grep '#+begin_src' "${file}" | head -1 | cut -d ' ' -f 4)")
html=$(echo "${file}" | sed 's/\.org$/\.html/')
echo "- [[https://jjanzen.ca/dotfiles/$1${html}][=${new_file}=]]" >> index.org
fi
done
}