LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   KDE w/ Konstruct Problem. (https://www.linuxquestions.org/questions/slackware-14/kde-w-konstruct-problem-489857/)

y3hDatMe 10-05-2006 09:35 PM

KDE w/ Konstruct Problem.
 
Alright ive installed this perfectly fine went threw all the steps worked fine. But now startkde only works inside of xfce or another window manager. And when I use xwmconfig since i didnt install kde from the disk, it isnt a option. I need to make or find a xinitrc.kde file, anyone got suggestions on how I might do this? thanks.

drumz 10-05-2006 11:36 PM

Here's the default file that comes with the kde tgz. It's located at /etc/X11/xinit/xinitrc.kde

Code:

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

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/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:
startkde

That last line calls /opt/kde/bin/startkde
Not sure if Konstruct made that for you. It's rather big, but let me know if you need it.


All times are GMT -5. The time now is 07:26 AM.