diff options
Diffstat (limited to 'xsessionrc.dot.link')
-rwxr-xr-x | xsessionrc.dot.link | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/xsessionrc.dot.link b/xsessionrc.dot.link index 9a3c53c..1561c21 100755 --- a/xsessionrc.dot.link +++ b/xsessionrc.dot.link @@ -80,7 +80,11 @@ fi #export SSH_ASKPASS="" export SSH_ASKPASS="/usr/lib/ssh/x11-ssh-askpass" -# SSH and GPG Agents +# SSH agent startup; this is now handled by ~/.config/autostart. +#eval `ssh-agent -s` +#usr/bin/gnome-keyring-daemon --start --components=ssh + +# SSH keys #if [ -x "$HOME/apps/utils-ssh/ssh-agent-loadkeys" ]; then # . $HOME/apps/utils-ssh/ssh-agent-loadkeys #fi @@ -205,7 +209,7 @@ if [ -d "$HOME/.xsessionrc.d" ]; then fi # Include custom xsessionrc files -if [ -d "$HOME/.xsessionrc.d" ]; then +if [ -d "$HOME/.custom/xsessionrc.d" ]; then # Use run-parts #run-parts $HOME/.custom/xsessionrc.d @@ -217,5 +221,9 @@ fi # Post processing if [ -e "$HOME/.custom/xsession-ready" ]; then + # Fork into the background + #$HOME/.custom/xsession-ready & + + # Source . $HOME/.custom/xsession-ready fi |