first commit

This commit is contained in:
2025-06-14 20:26:14 +02:00
commit 1edfd60dbd
351 changed files with 34592 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
if test -z "$SSH_AUTH_SOCK"
eval (command ssh-agent -c) >/dev/null 2>&1
for key in $HOME/.ssh/keys/*
if test -f $key
command ssh-add $key >/dev/null 2>&1
end
end
end