From c70d8c5c0df84fb1b91644fc9c833e30d12f5de9 Mon Sep 17 00:00:00 2001 From: inference Date: Tue, 16 May 2023 20:54:25 +0100 Subject: [PATCH] Add ZSH profile configuration file. --- desktop/zsh/.zprofile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 desktop/zsh/.zprofile diff --git a/desktop/zsh/.zprofile b/desktop/zsh/.zprofile new file mode 100644 index 0000000..c545518 --- /dev/null +++ b/desktop/zsh/.zprofile @@ -0,0 +1,14 @@ +# Inferencium +# ZSH - Profile + +# Copyright 2023 Jake Winters +# SPDX-License-Identifier: BSD-3-Clause-Clear + +# Version: 0.0.0.0 + + +# Cache SSH key passphrase in memory on login +if [ -z "$SSH_AUTH_SOCK" ] ; then + eval $(ssh-agent -s) + ssh-add +fi