https://bugzilla.novell.com/show_bug.cgi?id=397942 User madworm_de.novell@spitzenpfeil.org added comment https://bugzilla.novell.com/show_bug.cgi?id=397942#c11 --- Comment #11 from robert spitzenpfeil <madworm_de.novell@spitzenpfeil.org> 2008-06-23 04:43:44 MDT --- YES.... and no. I agree that under normal circumstances yes... once again, please read my previous comment carefully. when I put a custom xmodmap into the FIRST line of xinitrc.common it works. that is setxkbmap is still run AFTER xmodmap and it works... when I said it should not matter where xmodmap is run in the script I wanted to point out, that setxkbmap would always overwrite it... so putting xmodmap before "# Source this file only once" or after "# Source this file only once" should not matter at all with setxkbmap being run as the very last command in that script. to show you once and for all what I mean: this does not work: ------------------- # /etc/X11/xinit/xinitrc.common # # Common code used in X session and X init scripts. # File shall be sourced but not executed by the scripts. # # # Source this file only once # test "$XSESSION_IS_UP" != "yes" || return XSESSION_IS_UP=yes export XSESSION_IS_UP xmodmap $HOME/.Xmodmap .. .. this works: ----------- # /etc/X11/xinit/xinitrc.common # # Common code used in X session and X init scripts. # File shall be sourced but not executed by the scripts. # xmodmap $HOME/.Xmodmap # # Source this file only once # test "$XSESSION_IS_UP" != "yes" || return XSESSION_IS_UP=yes export XSESSION_IS_UP .. .. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.