im not sure if that will help, im not in front of that system at the moment to test, but in Suse's system wide /etc/X11/xinit/xinitrc which i believe is called if you dont supply a ~/.xinitrc there is a section of code:
if test "$XSESSION_IS_UP" != "yes" ; then
XLIBDIR=/usr/X11R6/lib/X11
test -r $XLIBDIR/Xmodmap && xmodmap $XLIBDIR/Xmodmap
test -r $HOME/.Xmodmap && xmodmap $HOME/.Xmodmap
test -r $XLIBDIR/Xresources && xrdb -load -retain $XLIBDIR/Xresources
test -r $HOME/.Xdefaults && xrdb -I$HOME -merge $HOME/.Xdefaults
test -r $HOME/.Xresources && xrdb -I$HOME -merge $HOME/.Xresources
fi
so for some reason it is not pulling my $HOME/.Xmodmap
my ~/.Xmodmap looks like:
!! Makes Caps Lock into a Shift Lock
clear Lock
keycode 66 = Shift_Lock
add Lock = Shift_Lock
I will try jlevie suggestoin later but right now I am still accepting any furthur suggestions as I want to make the least amount of changes as possible.
Main Topics
Browse All Topics





by: jleviePosted on 2004-12-07 at 10:37:52ID: 12766807
Edit ~/.xinitrc and add a line to execute xmodmap before kde starts. For example I need to run xrdb before starting Gnome so my xinitrc looks like:
xrdb -merge .Xresources
exec gnome-session