You are not logged in.

#1 2008-12-02 17:54:18

cell
Member
Registered: 2007-10-23
Posts: 111

update X.Org 7.4 shortcut keys messed up in gnome

After the update there's something wrong with some of my keyboard shortcuts.
For instants the up arrow key brings up take a screen shot while the print screen key don't do anything.

Here are my xorg.conf and 10-x11-input.fdi files.

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder3)  Thu Feb 14 18:20:37 PST 2008

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
#    RgbPath         "/usr/share/X11/rgb"
    ModulePath      "/usr/lib/xorg/modules"
    FontPath        "/usr/share/fonts/misc"
    FontPath        "/usr/share/fonts/100dpi:unscaled"
    FontPath        "/usr/share/fonts/75dpi:unscaled"
    FontPath        "/usr/share/fonts/TTF"
    FontPath        "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load           "record"
    Load           "extmod"
    Load           "dbe"
    Load           "glx"
    Load           "xtrap"
#    Load  "dri"
    Load           "freetype"
EndSection

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbLayout" "dk"
    Option         "XkbLayout" "nodeadkeys"
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mice"
    Option         "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Monitor Vendor"
    ModelName      "Monitor Model"
    HorizSync       30.0 - 170.0
    VertRefresh     50.0 - 170.0
EndSection

Section "Device"
    Identifier     "Card0"
    Driver         "nvidia"
    VendorName     "nVidia Corporation"
    BoardName      "G80 [GeForce 8800 GTS]"
    Option         "NoLogo" "True"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Card0"
    Monitor        "Monitor0"
    DefaultDepth    24
#    Option         "AddARGBGLXVisuals" "True"
    SubSection     "Display"
        Viewport    0 0
        Depth       1
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       4
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       8
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       15
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       16
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       24
        Modes      "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
  <device>
    <match key="info.capabilities" contains="input.keymap">
      <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>

    <match key="info.capabilities" contains="input.keys">
      <merge key="input.xkb.rules" type="string">base</merge>

      <!-- If we're using Linux, we use evdev by default (falling back to
           keyboard otherwise). -->
      <merge key="input.xkb.model" type="string">keyboard</merge>
      <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
             string="Linux">
        <merge key="input.xkb.model" type="string">evdev</merge>
      </match>

      <merge key="input.xkb.layout" type="string">dk</merge>
      <merge key="input.xkb.variant" type="string" />
    </match>
  </device>
</deviceinfo>

Could you please tell me how to configure it probably.

Offline

#2 2008-12-03 07:25:21

alejometal
Member
Registered: 2008-11-27
Posts: 9

Re: update X.Org 7.4 shortcut keys messed up in gnome

Yeah, I have the same trouble, my laptop is a compaq f754LA with latinamerican keyboard layout, all keys are fine, else up key, i'm XFCE so, I don't view the gnome-screenshot,  but I can view when it's called, seeing the output of startx.

So, if you get a workaround, please post it here, thanks

see ya


I want to learn, want to experience.

Offline

#3 2008-12-03 08:10:51

alejometal
Member
Registered: 2008-11-27
Posts: 9

Re: update X.Org 7.4 shortcut keys messed up in gnome


I want to learn, want to experience.

Offline

#4 2008-12-03 15:30:43

jamtat
Member
Registered: 2008-03-13
Posts: 229

Re: update X.Org 7.4 shortcut keys messed up in gnome

Quote from another thread:

jamtat wrote:

I have similar keyboard issues after pacman -Syu'ing today. My keyboard is already set to evdev-managed. But the up arrow key manages to send the print screen signal (so far as I can tell all other keys are working properly). I can't function with a keyboard like that. No access to bash history and I inadvertently forget when viewing a web page or something and hold down the up arrow key and about 20 print screen dialogs open up. What's the fix if the evdev-managed-keyboard option doesn't help? I want my keyboard back to normal!

Here's what restored my up arrow key to more normal behavior:

Section "ServerFlags"
    Option "AutoAddDevices" "False"
EndSection

in /etc/X11/xorg.conf

Found that advice in the thread "xserver 1.5 and KDE 4 keymaps - strange behavior".

This is what fixed the up arrow key in my Arch gnome installation.

James

Offline

#5 2008-12-03 17:34:15

cell
Member
Registered: 2007-10-23
Posts: 111

Re: update X.Org 7.4 shortcut keys messed up in gnome

Hi

Thanks for the suggestion unfortunately it won't work for me.
I should probably have said that Layout defaulted to evdev-managed here, didn't seem to do anything for me.

I too have disabled hotplugging for now. smile

jamtat wrote:

Here's what restored my up arrow key to more normal behavior:

Section "ServerFlags"
    Option "AutoAddDevices" "False"
EndSection

in /etc/X11/xorg.conf

Found that advice in the thread "xserver 1.5 and KDE 4 keymaps - strange behavior".

This is what fixed the up arrow key in my Arch gnome installation.

James

Yes, same here and remember to change evdev-managed under layout as well. smile

Offline

#6 2008-12-03 18:21:33

Mr Green
Forum Fellow
From: U.K.
Registered: 2003-12-21
Posts: 5,930
Website

Re: update X.Org 7.4 shortcut keys messed up in gnome

I had to readjust keys in keyboard shortcuts now they are replaced by xfree versions so not a real problem


Mr Green

Offline

#7 2008-12-03 19:17:15

cell
Member
Registered: 2007-10-23
Posts: 111

Re: update X.Org 7.4 shortcut keys messed up in gnome

Mr Green wrote:

I had to readjust keys in keyboard shortcuts now they are replaced by xfree versions so not a real problem

Most amazing, that did it, thank you. smile

Offline

#8 2008-12-06 19:25:33

darehanl
Member
Registered: 2006-09-08
Posts: 24

Re: update X.Org 7.4 shortcut keys messed up in gnome

Following https://bugs.launchpad.net/ubuntu/intre … omments/97, A

$ cd
$ mv .Xmodmap Desktop/
$ gconftool-2 --recursive-unset /desktop/gnome/peripherals/keyboard

seemed to fix my arrow keys. I'm not sure if these commands can be run while gnome is running, so I logged out of gnome and ran them at the console. If things work, I guess you can remove .Xmodmap.

Last edited by darehanl (2008-12-06 19:25:56)

Offline

Board footer

Powered by FluxBB