Added tabby

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2022-01-09 14:28:57 +00:00
parent f13e42df13
commit ee191f8bd2
2 changed files with 189 additions and 0 deletions

View File

@@ -107,6 +107,17 @@ case "${OSTYPE}" in
echo "⚠️ You'll need to create a new GPG key ⚠️"
echo "⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️"
fi
# Handle other files outside of the user's home directory
echo "Handiling non-standard files:"
# 1. Tabby config
f="./other-files/tabby/config.yaml"
dst="/Users/${USER}/Library/Application\ Support/tabby/config.yaml"
printf "Linking ${f}=>${dst}"
ln -sfn ${f} ${dst}
printf " ✅\n"
;;
esac