revert back to gnome console, kitty sucks

This commit is contained in:
2024-11-02 22:35:05 +01:00
parent 3882af2264
commit fc38dcb2ef
10 changed files with 33 additions and 33 deletions

View File

@ -229,6 +229,12 @@ check_or_make_symlink() {
# Ensure the parent directory of the target exists
mkdir -p "$(dirname "$TARGET")"
# if source doesn't exist it's likely a secret that hasn't been decrypted yet
if [ ! -e "$SOURCE" ]; then
printfe "%s\n" "yellow" " - Source $SOURCE doesn't exist"
return
fi
SOURCE=$(resolve_path "$SOURCE")
TARGET=$(resolve_path "$TARGET")