summaryrefslogtreecommitdiff
path: root/xinitrc.cpp
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@herrb.eu>2015-06-14 12:56:20 +0200
committerMatthieu Herrb <matthieu@herrb.eu>2015-06-14 12:56:20 +0200
commitb7db09eecd615d498356f94da81ab94edb17c0ad (patch)
tree6819483b2dfafac4c5f814a6a325868705c61d49 /xinitrc.cpp
parente2731ebb3871d1b104e9926cc80a1e2f35dd37fc (diff)
Merge OpenBSD local changes that were missed in previous syncs
Diffstat (limited to 'xinitrc.cpp')
-rw-r--r--xinitrc.cpp25
1 files changed, 15 insertions, 10 deletions
diff --git a/xinitrc.cpp b/xinitrc.cpp
index 5b4076c..1bcfd96 100644
--- a/xinitrc.cpp
+++ b/xinitrc.cpp
@@ -1,4 +1,5 @@
XCOMM!SHELL_CMD
+XCOMM $OpenBSD: xinitrc.cpp,v 1.12 2014/02/26 14:21:28 matthieu Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
@@ -43,21 +44,25 @@ XCOMM if we have private ssh key(s), start ssh-agent and add the key(s)
id1=$HOME/.ssh/identity
id2=$HOME/.ssh/id_dsa
id3=$HOME/.ssh/id_rsa
-if [ -x /usr/bin/ssh-agent ] && [ -f $id1 -o -f $id2 -o -f $id3 ];
+id4=$HOME/.ssh/id_ecdsa
+id5=$HOME/.ssh/id_ed25519
+
+if [ -z "$SSH_AGENT_PID" ];
then
- eval `ssh-agent -s`
- ssh-add < /dev/null
+ if [ -x /usr/bin/ssh-agent ] && [ -f $id1 -o -f $id2 -o -f $id3 -o -f $id4 -o -f $id5 ];
+ then
+ eval `ssh-agent -s`
+ ssh-add < /dev/null
+ fi
fi
-XCOMM start some nice programs
-
-if [ -d XINITDIR/xinitrc.d ] ; then
- for f in XINITDIR/xinitrc.d/?*.sh ; do
- [ -x "$f" ] && . "$f"
- done
- unset f
+XCOMM if dbus is installed, start its daemon
+if [ -x /usr/local/bin/dbus-launch -a -z "${DBUS_SESSION_BUS_ADDRESS}" ]; then
+ eval `dbus-launch --sh-syntax --exit-with-session`
fi
+XCOMM start some nice programs
+
XCLOCK -geometry 50x50-1+1 &
XCONSOLE -iconic &
XTERM -geometry 80x24 &