summaryrefslogblamecommitdiffstats
path: root/kde/post-install/plasma-workspace/xinit/xinitrc.plasma
blob: e70c281e35b201fe78fd7aeaa9dfd9e92a14b469 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                             
                           


                          
                    


                              
                            


                           
                     

  
                           




                                                       
                                                                   
                                                                          
    
                                                        
  
 
#!/bin/sh
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $

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

# merge in defaults and keymaps

if [ -f $sysresources ]; then
  xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
  xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
  xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
  xmodmap $usermodmap
fi

# Start the window manager:
if which startplasma-x11 1>/dev/null 2>/dev/null ; then
  START_KDE=startplasma-x11
else
  START_KDE=startkde
fi
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
  ck-launch-session dbus-launch --sh-syntax --exit-with-session $START_KDE
else
  dbus-launch --sh-syntax --exit-with-session $START_KDE
fi