cfg/aa000-0/zsh/.zprofile
inference 1fd6419fa0
Rename system "desktop" to "aa000-0"
Using actual system names allows fine-grained and modular control over
each system's configuration files.
2023-08-07 18:30:38 +01:00

20 lines
316 B
Bash

# Inferencium
# ZSH - Profile
# Copyright 2023 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause-Clear
# Version: 1.1.1.4
# Start ssh-agent on login
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval $(ssh-agent -s)
fi
# Environmental variables
## User
if [[ -f $HOME/.zshenv-user ]]; then
. $HOME/.zshenv-user
fi