.dotfiles/.zprofile

14 lines
307 B
Plaintext
Raw Normal View History

2021-04-09 20:22:06 +00:00
. "$HOME/.config/environment"
. "$HOME/.config/aliasrc"
2021-02-13 21:52:08 +00:00
2022-03-26 14:08:10 +00:00
if [ -x "$(command -v gpgconf)" ]
then
ssh_sock=$(gpgconf --list-dirs agent-ssh-socket)
export SSH_AUTH_SOCK="$ssh_sock"
2020-01-08 13:26:50 +00:00
gpgconf --launch gpg-agent
fi
2022-03-21 21:20:12 +00:00
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
2022-03-26 14:08:10 +00:00
exec $AUTOSTART_DISPLAY
2022-03-21 21:20:12 +00:00
fi