summaryrefslogtreecommitdiff
path: root/.xinitrc
blob: b1c6cc4c9e9f3d9e7757c5f18966e82adc5e74d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# this is HIGHLY TEMPORARELY - until I set this global
xset r on
xset r rate 250 50

# Xdefault is splitted so load the splitted files at startup
[[ -x ~/.scripts/set_xressources.sh ]] && ~/.scripts/set_xressources.sh

[[ -x ~/.scripts/disable_touchpad.sh ]] && ~/.scripts/disable_touchpad.sh

unset command

# temporarily unset XDG_SESSION_COOKIE so consolekit launches a new session
realxdgcookie="$XDG_SESSION_COOKIE"
XDG_SESSION_COOKIE=
# run all system xinitrc shell scripts which will update $command
if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for i in /etc/X11/xinit/xinitrc.d/* ; do
    [[ -x "$i" ]] && . "$i"
  done
fi
# restore XDG_SESSION_COOKIE
XDG_SESSION_COOKIE="$realxdgcookie"
unset realxdgcookie

exec $command $(XSESSION="${2:-${XSESSION}}" /etc/X11/chooser.sh)