updates wezsterm theme and pre-commit bash

Signed-off-by: Menno van Leeuwen <menno@vleeuwen.me>
This commit is contained in:
2024-08-24 01:53:57 +02:00
parent b1d4e97af9
commit 3241f0f63f
5 changed files with 27 additions and 31 deletions

View File

@@ -6,17 +6,10 @@ source ~/dotfiles/bin/helpers/functions.sh
unencrypted_files=$(find config/ssh/config.d/ -type f ! -name "*.gpg")
if [ -n "$unencrypted_files" ]; then
printfe "%s\n" "red" "Unencrypted files found in .ssh/config.d/:"
for file in $(find config/ssh/config.d/ -type f ! -name "*.gpg"); do
printfe "%s\n" "yellow" " - $file"
done
# Check if these files are staged
staged_files=$(git diff --cached --name-only)
unencrypted_staged_files=""
for file in $unencrypted_files; do
# Use a more robust check to see if the file is in the staged_files list
if echo "$staged_files" | grep -q "^$file$"; then
if [[ $staged_files == *"$file"* ]]; then
unencrypted_staged_files="$unencrypted_staged_files $file"
fi
done
@@ -31,4 +24,4 @@ if [ -n "$unencrypted_files" ]; then
echo ""
printfe "%s\n" "blue" "They are not staged so you're good but be vigilant!"
fi
fi