diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-08-08 23:26:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-08-08 23:26:10 -0300 |
commit | 080bfbf3a9f2e16004ff234aad87086a6f0b2b71 (patch) | |
tree | b86a216363b2d136967205535d150a21338adfb9 /xsessionrc.dot.link | |
parent | e3bb0dade6e1db0aeb6f79f84abafd9f9b84f5de (diff) | |
download | xsession-080bfbf3a9f2e16004ff234aad87086a6f0b2b71.tar.gz xsession-080bfbf3a9f2e16004ff234aad87086a6f0b2b71.tar.bz2 |
Fix: misc xsession/autostart updates
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 |