cfg/aa000-0/zsh/.zlogout
inference b32cf9ce29
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:26:37 +01:00

17 lines
317 B
Bash

# Inferencium
# ZSH - Logout
# Copyright 2023 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause-Clear
# Version: 0.1.0.1
# Kill ssh-agent on logout to purge cached SSH key passphrase from memory
if [ -n "$SSH_AUTH_SOCK" ] ; then
eval $(ssh-agent -k)
fi
# Clear shell to prevent information disclosure
clear