2023-02-24 01:24:59 +00:00
|
|
|
# vim: ft=sh
|
|
|
|
|
|
|
|
if [ ! "$SSH_TTY" ]; then
|
2023-01-06 18:57:26 +00:00
|
|
|
# Remove socket files
|
2023-02-24 01:24:59 +00:00
|
|
|
rm "$SSH_AUTH_SOCK"
|
|
|
|
rm "$HOME/.spool/ssh-agent.env"
|
|
|
|
rm "$SWAYSOCK"
|
2022-12-12 19:48:42 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# when leaving the console clear the screen to increase privacy
|
|
|
|
if [ "$SHLVL" = 1 ]; then
|
|
|
|
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
|
|
|
fi
|