From fc7c8f0506a5baa64dab40dfe65657154a2dc02a Mon Sep 17 00:00:00 2001 From: MajorFeels Date: Mon, 24 Apr 2017 04:31:43 -0400 Subject: [PATCH] Add comment to ssh module for GNOME users --- modules/ssh/init.zsh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/ssh/init.zsh b/modules/ssh/init.zsh index 4411406..133d4ea 100644 --- a/modules/ssh/init.zsh +++ b/modules/ssh/init.zsh @@ -1,6 +1,12 @@ # # sets up ssh-agent # +# The GNOME Keyring daemon will cause issues with ssh-agent +# Please make sure to disable the GNOME Keyring SSH intergration if you wish to use ssh-agent +# This can be done with the following commands: +# mkdir ~/.config/autostart +# cp /etc/xdg/autostart/gnome-keyring-ssh.desktop ~/.config/autostart/ && +# printf '%s\n' 'Hidden=true' >> ~/.config/autostart/gnome-keyring-ssh.desktop # don't do anything unless we can actually use ssh-agent if (( ! ${+commands[ssh-agent]} )); then