diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 23:29:26 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 23:29:26 -0500 |
commit | 6f1e638da89dbcd1b710f9065657b9b3dbb82430 (patch) | |
tree | 0867f18c31649695140e8d1c8b0015fe28dc9992 | |
parent | b2e8dcde4efef803f8b5b14da01bdfbaeb568701 (diff) |
Add note about autogeneration
-rwxr-xr-x | fix-dotfile-paths.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fix-dotfile-paths.sh b/fix-dotfile-paths.sh index 992644c..43a2fc8 100755 --- a/fix-dotfile-paths.sh +++ b/fix-dotfile-paths.sh @@ -44,7 +44,7 @@ create_dir_tree () { cd ~/.dotfiles || exit git checkout main echo '#+title: Dotfiles' >> index.org -echo 'This is my system configuration. Choose which system to browse: ' >> index.org +echo 'This is my system configuration. These pages are automatically generated from the sources hosted [[https://git.sr.ht/~jjanzen/.dotfiles][here]]. Choose which system to browse: ' >> index.org find -- . -maxdepth 1 -type d | sed '/\(^\.$\|^\.\/\.git$\|\.\/common\)/d' | while read -r root; do root=$(echo "$root" | sed 's/\(\.\/\|\/$\)//') echo "- [[https://jjanzen.ca/dotfiles/$root][$root]]" >> index.org |