"Alt Gr" in X not working

Hey guys,
I just installed archlinux recently on my notebook. Everything works just fine, but my "Alt Gr" Button on my keyboard is not working. I checked a lot of websites and posts on message board, but could find a proper solution.
I am using English locales, but with a german Keyboard. The "Alt Gr" key is working in the terminal, but not in apps like Chromium or any other under X.
My xorg.conf part for the Keyboard looks like that:
Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbLayout" "de"
    Option         "XkbVariant" "nodeadkeys"
EndSection
The localization part from my rc.conf looks like that:
# LOCALIZATION
LOCALE="en_US.utf8"
DAEMON_LOCALE="no"
HARDWARECLOCK="UTC"
TIMEZONE="Europe/Brussels"
KEYMAP="de-latin1-nodeadkeys"
CONSOLEFONT=
CONSOLEMAP="8859-1_to_uni.trans"
USECOLOR="yes"
VERBOSE="3"
Thank you very much for any hints!

Hello Jankosevic,
You say "Alt Gr" but I don't see it anywhere in your xorg.conf --- maybe add it in there first? (See /usr/share/X11/xkb/rules/base.lst)
If all else fails, you could just write a shell script that uses the "setxkbmap" command to change up your keyboard layout (the new layouts chosen by this command are universal and should work across all of your windows in X --- it does for me very reliably).
For me, I stopped relying on xorg.conf for setting up keyboard layouts ("us,fr,de") because the layout switching keys stopped working recently (grp:shifts_toggle); I use setxkbmap now.
EDIT: Oops, you only have 1 layout. Sorry, I was hallucinating that you had multiple layouts and had trouble switching between them. Please disregard this post...
Last edited by listdata (2011-06-20 18:59:39)

Similar Messages

  • Always Script Editor ... Alt Gr key does not work

    Hi,
    With IE6 in SQL Script Editor
    Alt Gr Key does not work.
    For instance, I cannot type ||
    In fact it's a copy-paste from SQL command (which works well)
    Note Script Editor does not work with Firefox.
    Thank you for any information
    Regards
    JRD120

    You might try this:
    Remove any USB device except mouse/keyboard
    Perform a PRAM-reset (hold ALT-CMD-P-R until you've heard the starting chime 3 times)

  • Key combination Shift+Alt+Cmd+D does not work in Indesign CC, why not?

    Key combination Shift+Alt+Cmd+D does not work in Indesign CC, why not?

    Is it assigned to something in the shortcut set you are using?

  • Alt Gr + key combination not working in FF?

    When i wont to type for example "@" i cant because in FF combination of Alt Gr key and V are not working.
    Why the combination is not working and how i can fix that?

    I had the same problem, in my case the problem was the Firewall (COMODO). I set the Firefox program without permission to access to the keyboard, the most of keys worked perfectly but ALTGR+Any didn't work. Try to allow access to the keyboard to firefox program if you has any firewall with proactive defense.
    I hope this solve your problem.
    Regards,
    Blackmoon

  • How do I take a screenshot? Alt + prt sc does not work nor anything else I've tried.

    I have to take a screen shot for a course I am doing. The instructions I received were: Alt + print screen command. This does not work. Keeps reloading the home page. Also tried prt sc with the shift, control, and fn keys and nothing works. I have done a screen shot before but cannot remember how I did it. Rather desperate to figure this out. Any ideas?

    You usually copy the screenshot to the clipboard and paste that image in an image editor program like Paint. Then you can save the image as a .jpg or .png file.
    http://www.wikihow.com/Take-a-Screenshot-with-the-Snipping-Tool-in-Vista
    http://www.microsoft.com/windowsxp/using/setup/tips/screenshot.mspx
    http://en.wikipedia.org/wiki/Screenshot#Microsoft_Windows

  • Gnome Alt+F2 auto-complete not working

    Hello,
    When pressing ALT+F2 and typing some command the auto-complete does not work.
    Already tried backing up and removing both ~/.config/dconf and ~/.gconf and it didn't fix.
    Also one thing to notice is that other users on the same machine doesn't have the problem.
    Any thought?
    Ps: It was here since before 3.2 update and didn't get fix after the update.
    Thanks

    I have the same problem. Tried using the mouseover to the top-left corner and typing the command. Also invoking the superkey. When I start typing in everything freezes.
    Update: I did open applications using the gnome-terminal       $ application-name &
                  to start firefox with no problems.  Also did move away /.config/dconf and /.gconf .   Still the same.  When it freezes all I can do is a hardware reset. very strange     doing it in Linux, i tell you.
                 This isn't happening before I added any Online Accounts. Somebody has to rethink this much integration with the Cloud I think.
    Last edited by findingdonato (2011-10-01 23:06:23)

  • Alt+mnemonic key is not working properly for Menu Items

    Assume there are two menus , File Menu with mnemonic Alt+F
    and Save Menu with mnemonic Alt+S. File Menu contains the
    menu items like PageSetup with Mnemonic S. Save menu has
    the menu item Properties with Mnemonic P.
    Pressing Alt+F opens the File Menu which has the menu item
    PageSetup.Pressing S activates the PageSetup menu item.
    Similarly Pressing Alt+S opens the Save Menu which has the
    menu item Properties. Pressing P activates the Properties
    menu item acion. But Pressing Alt+P also activates the
    Properties menu item action(it is not the desired behaviour)
    Pressing Alt+Mnemonic key has to open only the Menus.It
    should not consider the menu items.
    STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
    1.Press Alt+F
    2.File Menu is invoked
    3.Press S
    4. Invokes the menu item action
    5. Press Alt+S
    6. Save menu is invoked
    7. Press P
    8. Invokes the menu item action
    9. Press Alt+P
    10. Invokes the menu item action
    EXPECTED VERSUS ACTUAL BEHAVIOR :
    Pressing of Alt+Mnemonic key invokes the menu and also menu
    item actions. If the same mnemonic is present in the Menu
    it is giving the priority to Menu only.Pressing of Alt key
    alone does not hiding the pull down menu
    Expected Result;
    Pressing of Alt+Mnemonic key has to list out the pull
    down menu only.It should not consider the menu items with
    the same mnemonic. If Alt key alone is pressed the pull
    down menu has to hide.
    REPRODUCIBILITY :
    This bug can be reproduced always.
    ---------- BEGIN SOURCE ----------
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class JavaBug extends JFrame
    public JavaBug()
    // Create menu bar
    JMenuBar menuBar = new JMenuBar(); // Create menu bar
    setJMenuBar(menuBar); // Add menu bar to window
    // Create first option on menuBar
    JMenu m1 = new JMenu("File");
    m1.setMnemonic('F');
    JMenuItem m1o1 = new JMenuItem("PageSetup");
    m1o1.setMnemonic('S');
    m1o1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.out.println("File/PageSetup was selected");
    m1.add(m1o1);
    // Create second option on menuBar
    JMenu m2 = new JMenu("Save");
    m2.setMnemonic('S');
    JMenuItem m2o1 = new JMenuItem("Properties");
    m2o1.setMnemonic('P');
    m2o1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.out.println("Save/Properties was selected");
    m2.add(m2o1);
    menuBar.add(m1);
    menuBar.add(m2);
    this.setTitle("Mnemonic Bugs");
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    setSize(400,250);
    show();
    public static void main(String[] args)
    JavaBug bug = new JavaBug();
    Suggestions welcomed
    punniya

    I tried your code, but didn't get your "bug" using jdk 1.3 on windows 2000 (at my school).
    Kind regards,
    Levi

  • Alt+Right Click Panel not working - gnome

    Hi, I'm using the lastest gnome with gnome-extra (3.2.1-1) and stock wm, no fallback mode or anything. Alt+RightClick on the top panel doesn't produce a context menu. However, clicking my user name in the top right and then pressing Alt changes "Suspend" to "Power Off..." as expected.
    Anyone else having this problem?

    hey kalinatek, im facing the exact same issue... But have you tried Super+Alt+Right Click?? It seems to solve problems for others but not for me somehow, its really bugging me...
    Iv uninstalled compiz, tweeked dconf, gconf, what not... but the problem is still persisting.... though the other shortcuts work fine...
    Any help would be appreciated, thanks in advance...

  • Save for Web & Devices shortcut Alt+Shift+Ctrl+S not working

    Hi
    I've a really weird issue I'm running PS CS5 on Windows 7 on Dell XPS 1645 for some reason I'm unable to save for web using 'Alt+Shift+Ctrl+S' clicking the menu item works just fine however. This is driving me nuts any help or advice please??

    Some other program has porbably hijacked the key combination.
    you could first try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.

  • ALT Drag for Duplicate not working in CC

    I use the alt (option) drag to duplicate items all the time. I just made the switch over to InDesign CC from CS6, and now it doesn't work. The odd thing though is when I hold down alt and hover over an object, my cursor does change to the double arrow, as if the duplicate function is going to work. But when I go to drag (obv. while holding down on alt), and let go, the object simply moves with no duplication occurring.
    Has anyone else experienced this? Any ideas on how to fix this?

    I had the same problem with Indesign CC for Mac.
    Found out that Real Time Thread Shield of my AV (Webroot) caused this behavior.
    Posted it on Webroot forums too:
    https://community.webroot.com/t5/Webroot-SecureAnywhere-Complete/Webroot-supressing-alt-mo difier-in-Indesign-CC/td-p/54952#.UhtWnWQ-KLw

  • Alt-apple-P-R not working

    Can't zap the pram anymore. When booting, the keys alt-apple-P-R are just ignored. I tried to reset SMC by keeping the power button pressed while booting: one long beep and boots normally. Thanks for your hints!

    Did you enable Firmware Password Protection? That blocks PRAM reset, among other things.
    http://docs.info.apple.com/article.html?artnum=106482
    Also, "+keeping the power button pressed while booting+" is not the way to reset the SMC. This is:
    http://docs.info.apple.com/article.html?artnum=303319
    Hope this helps...

  • Alt + sound icon click not working

    Hi, Merry Christmas and a Happy new year firstly!
    I have been using airport express to stream ITunes music and all works fine (well most of the time)
    Tried to stream Spotify yesterday for some christmas music (I dont own any on itunes) and everytime i Alt+sound icon clicked and selected Airport express, it basically just ignored it and defaulted to internal speakers, I googled this and tried the only thing i could find which was to activity monitor kill coreAudio but to no avail, still no music to my sound system.
    any ideas??
    Macbook Pro 2009 - Mavericks.

    Anyone?

  • Requiring Right Alt, remapping keyboard does not work

    I require the Right Alt button in a game. I can't change the settings of the game cause it's a lazy port from the playstation.
    I've tried remapping the keyboard with the program which rewrites the registry, it works when I use notepad or office, but in the game itself, it doesn't.
    I also know that normally, ctrl + option key is the equivalent of right alt. But also no success
    Any workarounds?
    Message was edited by: DaMob21

    Anyone?

  • Alt + Shift shortcut does not work in CDE

    Hello,
    I have a following problem when I try to use Alt+Shift shortcuts in Eclipse IDE: when I press Alt+Shift+N my Eclipse behave as if Alt+N was pressed (without Shift).
    The problem is described in the following bug:https://bugs.eclipse.org/bugs/show_bug.cgi?id=120555.
    The solution is to remove "grp:alt_shift_toggle" option from xorg.conf. Unfortunately I cannot find xorg.conf in my CDE environment.
    Do you have any ideas how this issue could be solved?
    Many thanks!
    Kuba

    If it doesn't work for certain applications then you may go through the followings:
    GetAltTabInfo function
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms633501(v=vs.85).aspx
    Which windows appear in the Alt+Tab list?
    http://blogs.msdn.com/b/oldnewthing/archive/2007/10/08/5351207.aspx
    S.Sengupta, Windows Entertainment and Connected Home MVP

  • AR - The Alt-Payer setup is not working

    Hello
    The alt-payer configuration is done per SAP. The worklist is generated.
    The check is "Posted on Account" with posting error message
    as "Accounts receivable posting Error: (00 344) No batch input data for
    screen SAPMF05A 0614".
    Please let me know if you come across this
    R

    Oh, and now I realize that I have the same problem in Thunderbird 3.1.9. Makes it a bit difficult to type in email addresses.

Maybe you are looking for

  • Album Art not showing up?

    Has anyone else had a problem with their album art not showing up in coverflip? These are all CD's that I own and ripped onto my computer with iTunes, and if I look at them in iTunes I can see the cover art. But when I turn my ipod sideways to flip t

  • What is voltage power block at Apple Airport Extreme?

    What is voltage power block at Apple Airport Extreme? 110 or 220 Volt. Or both type support.

  • Trouble with iweb SEO tool publishing to FTP address

    Trying to publish using SEO tool to my FTP address and nothing happens in the status bar. I selected the folder to upload and choose the right server folder but no go. Any suggestions. Do I need to go on my host and clear out the publishing folder fi

  • How do you get itunes to stop updating the I pod?

    i want to add a bunch of CDs to my I Tune but i don't want them all to load into my i pod, when ever i plug my i pod into the computer they auto install everything into the i pod and its filling up with stuff i don't need on there, is there a way to

  • Calling the selection screen of the calling program after the execution of

    Hi all, I had created a program for a purchase order display. It has three radio-buttons from where i am calling different programs. I am using submit in the calling program and get parameter in at selection-screen output of the called program. I am