summaryrefslogblamecommitdiffstats
path: root/desktop/matchbox-window-manager/xinitrc.matchbox
blob: 64c2ea46ed3cadeca3b13963bc877db34dd0c58a (plain) (tree)
1
2
3
4
5
6
7
         


                               

                                           
 




                                                            
 
                 
                                         
                  
    

                         
  
#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/lib/X11/xinit/.Xresources
sysmodmap=/usr/lib/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 [ -x /usr/bin/matchbox-session ]; then
  matchbox-session
else
  xterm &
  matchbox-window-manager
fi