Browse Source

xsession

master
Victor Berger 7 years ago
parent
commit
e7d3988412
1 changed files with 21 additions and 0 deletions
  1. +21
    -0
      .xsession

+ 21
- 0
.xsession View File

@@ -0,0 +1,21 @@
#!/bin/sh

# Ensure dbus is either already running, or safely start it
if [[ -z "${DBUS_SESSION_BUS_ADDRESS}" ]];
then
eval $(dbus-launch --sh-syntax --exit-with-session)
fi

if test -z "${XDG_RUNTIME_DIR}"; then
export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir
if ! test -d "${XDG_RUNTIME_DIR}"; then
mkdir "${XDG_RUNTIME_DIR}"
chmod 0700 "${XDG_RUNTIME_DIR}"
fi
fi

eval "$(gpg-agent --daemon)"

eval "$(ssh-agent)"

exec /etc/X11/Sessions/awesome

Loading…
Cancel
Save