mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
14 lines
269 B
Bash
14 lines
269 B
Bash
#!/bin/sh
|
|
#
|
|
# This file is executed at kde shutdown.
|
|
# Uncomment the following lines to kill the agents
|
|
# that were started at session startup.
|
|
|
|
if [ -x /usr/bin/gpgconf ]; then
|
|
/usr/bin/gpgconf --kill gpg-agent
|
|
fi
|
|
#
|
|
if [ "${SSH_AGENT_PID}" ]; then
|
|
ssh-agent -k
|
|
fi
|