follow links

This commit is contained in:
Jacob Janzen 2024-08-09 22:34:17 -05:00
parent bb3e2e1cc2
commit c62274d9cb

View file

@ -6,36 +6,49 @@ create_ls_entry () {
if [ "$1" != "" ]; then if [ "$1" != "" ]; then
echo "- [[https://jjanzen.ca/dotfiles/$1..][=../=]]" >> index.org echo "- [[https://jjanzen.ca/dotfiles/$1..][=../=]]" >> index.org
fi fi
find -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do find -L -- . -maxdepth 1 -type d | sed '/^\.$/d' | sed 's/^\.\///' | while read -r dir; do
if [ "${dir}" != "*" ] && [ "${dir}" != ".git" ]; then if [ "$dir" != "*" ] && [ "$dir" != ".git" ]; then
echo "- [[https://jjanzen.ca/dotfiles/$1${dir}][=${dir}/=]]" >> index.org echo "- [[https://jjanzen.ca/dotfiles/$1$dir][=$dir/=]]" >> index.org
fi fi
done done
echo "* Files" >> index.org echo "* Files" >> index.org
find -- . -maxdepth 1 -type f | sed 's/^\.\///' | while read -r file; do find -L -- . -maxdepth 1 -type f | sed 's/^\.\///' | while read -r file; do
if [ "${file}" = ".wallpaper" ]; then if [ "$file" = ".wallpaper" ]; then
echo "- [[https://wallhaven.cc/w/vgryy5][=.wallpaper=]]" >> index.org echo "- [[https://wallhaven.cc/w/vgryy5][=.wallpaper=]]" >> index.org
elif echo "${file}" | grep -q "\.org$" && [ "${file}" != "index.org" ]; then elif echo "$file" | grep -q "\.org$" && [ "$file" != "index.org" ]; then
new_file=$(basename "$(grep '#+begin_src' "${file}" | head -1 | cut -d ' ' -f 4)") new_file=$(basename "$(grep '#+begin_src' "$file" | head -1 | cut -d ' ' -f 4)")
html=$(echo "${file}" | sed 's/\.org$/\.html/') html=$(echo "$file" | sed 's/\.org$/\.html/')
echo "- [[https://jjanzen.ca/dotfiles/$1${html}][=${new_file}=]]" >> index.org echo "- [[https://jjanzen.ca/dotfiles/$1$html][=$new_file=]]" >> index.org
fi fi
done done
} }
create_dir_tree () {
ROOT="$HOME/.dotfiles/$1"
create_ls_entry ""
# iterate over all directories
find -L -- . -type d | sed '/^\.$/d' | while read -r dir; do
cd "$dir" || continue
dir=$(echo "$dir" | sed 's/^\.\///')
create_ls_entry "$dir/"
cd "$ROOT" || exit
done
}
cd ~/.dotfiles || exit cd ~/.dotfiles || exit
git checkout main git checkout main
START=$(pwd) echo '#+title: Dotfiles' >> index.org
echo 'This is my system configuration. Choose which system to browse: ' >> index.org
create_ls_entry "" find -- . -maxdepth 1 -type d | sed '/\(^\.$\|^\.\/\.git$\|\.\/common\)/d' | while read -r root; do
root=$(echo "$root" | sed 's/\(\.\/\|\/$\)//')
# iterate over all files except the .git/ directory and . echo "- [[https://jjanzen.ca/dotfiles/$root][$root]]" >> index.org
find -- . -type d | sed '/^\.$/d' | sed '/^\.\/\.git\//d' | sed '/^\.\/.git/d' | while read -r dir; do cd "$root" || exit
cd "${dir}" || continue create_dir_tree "$root"
cd ~/.dotfiles || exit
dir=$(echo "${dir}" | sed 's/^\.\///')
create_ls_entry "${dir}/"
cd "${START}" || exit
done done
cd || exit