summaryrefslogtreecommitdiffstats
path: root/desktop/matchbox-window-manager/xinitrc.matchbox
blob: be55eda85ef498031d1897cfcf6e8ec5c083112f (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
#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# Merge in defaults and keymaps
[ -f $sysresources ] && /usr/bin/xrdb -merge $sysresources
[ -f $sysmodmap ] && /usr/bin/xmodmap $sysmodmap
[ -f $userresources ] && /usr/bin/xrdb -merge $userresources
[ -f $usermodmap ] && /usr/bin/xmodmap $usermodmap

# Start Matchbox 
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
  if [ -x /usr/bin/matchbox-session ]; then
    ck-launch-session matchbox-session
  else
    matchbox-session
  fi
else
  xterm &
  matchbox-window-manager
fi