Openbox: setxkbmap in .xinitrc seems not to work

Hi,
I'm running Openbox on a laptop, and I also have a USB keyboard. I'm trying to set up the keyboard layout (for both keyboards) to switch between dvorak, querty, and Spanish dvorak. The following line is in ~/.xinitrc:
setxkbmap -layout "us,us,es" -variant "dvorak,,dvorak" -option "grp:caps_toggle"
I also have a file called "20-keyboard-layout.conf" in /etc/X11/xorg.conf.d:
Section "InputClass"
Identifier "keyboard-layout"
MatchIsKeyboard "on"
Option "XkbLayout" "us, us, es"
Option "XkbVariant" "dvorak, , dvorak"
Option "XkbOptions" "grp:caps_toggle"
EndSection
This setup doesn't work as expected. If the USB keyboard is plugged in before I run startx, then both the laptop and USB keyboards seem to use dvorak (which is the layout specified in /etc/vconsole.conf), but they don't switch when I press capslock. If I then pull out the USB and put it back in, then the USB keyboard is able to switch layouts as expected, but the laptop keyboard is still stuck on dvorak. If, on the other hand, I manually run the aforementioned setxkbmap command from within Openbox, then both keyboards are able to switch between the layouts.
None of this behavior changes if the setxkbmap line is removed from ~/.xinitrc. I feel like that line is being completely ignored, which is frustrating, because it makes no sense.
I've tried Googling around and reading some of the man page for xorg.conf and various other things, to no avail. I'm relatively new to Linux--I've been using Arch for less than six months. Thanks for your help!

Please check the <i>Page Window</i> of SAP Script for each window. I believe the overlaping is happening. Adjust the size of MAIN and MVTXT in Page Window.
Cheers,
Thomas.

Similar Messages

  • The function AirDrop on my Mac BookAir seems not to work, not detect my iPad. How to fix this?

    The function AirDrop on my Mac BookAir seems not to work, not detect my iPad. How to fix this?

    AirDrop on iOS devices (iPads, iPhones, iPod touches) can only AirDrop things with other iOS devices. AirDrop on Mac can only AirDrop things with other Macs.
    I hope this solves your question.
    Austin

  • I downloaded iMovie 11 butit seems not to work with IDVD6. Do I need to get the Newest IDVD? Which IDVD is the latest and where do i download it from?

    I downloaded iMovie11 but it seems not to work with iDVD6. Do I need to down load the latest IDVD?

    Where do I download it from?
    You need to use iDVD 09 or iDVD 11.  These are only available on disk.
    IDVD is a wonderful piece of software and well worth the low cost of $40.
    http://www.amazon.com/Apple-MC623Z-A-iLife-VERSION/dp/B003XKRZES/ref=sr_1_1?ie=U
    If you live in a state where Amazon collects sales tax you may prefer the link below.
    http://dealmac.com/lw/artclick.html?1,527850,1872219

  • My select select statement seems not to work...

    Hello experts,
    I am having trouble with my select statement below. Here is what I need to do:
    1. loop at itab it_equz.
    2. get single asset number(ANLNR) and description(SHTXT) from table ITOB where EQUNR =_equz-equnr.
    3. get single asset number(ANLN1), asset subclass(ANLN2 and subnumber(ORD42 from table ANLA where its asset(anln1) equals to the asset fetched by ITOB. (no. 2 step) and DEAKT eq '00000000'
    4. Now, I would get all fields(select single) in table ANLC where ANLN1 equals to asset fetched by ANLA and ANLN2 equals to ANLN2 fetched by ANLA and AFABE eq '01'.
    5.endloop.
    Now, the problem is that I can't seem to get the right values in table ANLC. Now, my boss said that the values that I must get in ANLC must not be deactivated. So I did that by getting the required fields(no 3 step) in table ANLA where its DEAKT is equal to '00000000'.
    Now, my select statement for ANLC seems not to work properly since I have the proper where conditions. Anyway, below is my select statement that I did:
    LOOP AT it_equz.  "no 1 step
    SELECT SINGLE anlnr shtxt FROM itob   "no 2 step
              INTO (it_itob-anlnr, it_itob-shtxt)
              WHERE equnr = it_equz_dum1-hequi.
    MOVE it_itob-anlnr TO it_finaltab-asset_dum.
                MOVE it_itob-anlnr TO it_finaltab-asset.
                MOVE it_itob-shtxt TO it_finaltab-description.
    SELECT SINGLE bukrs anln1 anln2 ord42   "no 3 step
                FROM anla                                  
                INTO (it_anla-bukrs, it_anla-anln1, it_anla-anln2,
                      it_anla-ord42)
                WHERE anln1 = it_finaltab-asset
                  AND bukrs IN r_iwerk
                  AND deakt = '00000000'.
    MOVE it_anla-ord42 TO it_finaltab-asset_sub.
                  WRITE it_finaltab-asset TO v_asset.
                  CONCATENATE v_asset '-' it_anla-anln2
                  INTO it_finaltab-asset_subnum.
    SELECT SINGLE bukrs anln1 gjahr afabe knafa kansw  "no 4 step
                              answl kaafa nafal aafav aafag
                              nafap aafap nafav nafag FROM anlc
                          INTO (it_anlc-bukrs, it_anlc-anln1, it_anlc-gjahr,
                                it_anlc-afabe, it_anlc-knafa, it_anlc-kansw,
                               it_anlc-answl, it_anlc-kaafa, it_anlc-nafal,
                               it_anlc-aafav, it_anlc-aafag, it_anlc-nafap,
                               it_anlc-aafap, it_anlc-nafav, it_anlc-nafag)
                            WHERE anln1 EQ it_finaltab-asset
                              AND anln2 EQ it_anla-anln2
                              AND bukrs EQ it_anla-bukrs
                              AND afabe EQ '01'.
    it_finaltab-accq_cost = it_anlc-kansw + it_anlc-answl.
                IF p_posdep = 'X'.
                  it_finaltab-acc_dep = it_anlc-knafa +
                                        it_anlc-nafav +
                                        it_anlc-nafag +
                                        it_anlc-kaafa +
                                        it_anlc-aafav +
                                        it_anlc-aafag.
                ELSE.
                  it_finaltab-acc_dep = it_anlc-knafa +
                                        it_anlc-nafav +
                                        it_anlc-nafag +
                                        it_anlc-kaafa +
                                        it_anlc-aafav +
                                        it_anlc-aafag +
                                        it_anlc-nafap +
                                        it_anlc-aafap.
                ENDIF.
    APPEND it_finaltab. CLEAR it_finaltab.
              APPEND it_equz_dum2. CLEAR it_equz_dum2.
              CLEAR it_itob. CLEAR it_anla. CLEAR it_anlc.
    endloop.

    Hi,
      Please avoid selection in loop. it will lead to major performance issue.
    avoid move statements ; instead use assignment.
    1st :- select the entire data into internal table
    eg:-
    SELECT anlnr shtxt FROM itob
    INTO table it_itob
    for all entries in it_equz
    WHERE equnr = it_equz-hequi.
    1st select
    2nd select.
    2nd :- now loop on ur internal table to get the desired result.
    it is good to work with internal table rather than select statements in loop.
    Regards

  • Can the new garageband open files from the previous garageband? in my case it seems not to work and I would like to know if it is possible at all...

    Can the new garageband open files from the previous garageband? in my case it seems not to work and I would like to know if it is possible at all...

    No.
    I find it extremely frustrating that Apple does not care for such an obvious bug affecting one of the basic funcionalities of AirPlay. Unless, of course, if there's something I don't know - but I've done some research and it seems that plenty of people have same issue and no solution is settled.

  • HT4437 Is it possible to zoom in photos when using airplay? It seems not to work at all. I can only zoom in if i use mirroring and even then i have to reconnect mirroring each time I chage an albumor even go from the photo to the album level.

    Is it possible to zoom in photos when using airplay? It seems not to work at all. I can only zoom in if i use mirroring and even then i have to reconnect mirroring each time I chage an albumor even go from the photo to the album level.

    No.
    I find it extremely frustrating that Apple does not care for such an obvious bug affecting one of the basic funcionalities of AirPlay. Unless, of course, if there's something I don't know - but I've done some research and it seems that plenty of people have same issue and no solution is settled.

  • Dropped my iphone and now home button doesnt work and will not charge.lower third of it seems not to work.i assume it's had it.what will i lose off it?

    dropped my iphone and now home button doesnt work and will not charge.lower third of it seems not to work.i assume it's had it.what will i lose off it?

    rbrook0113 wrote:
    I know any device could malfucntion but if it costs $40,000 to buy you could at least warn someone of the possible malfuctions. It makes the company look bad when a large amount of your devices act up and you "cant help them" if they dont pay extra. Im just saying.
    Sorry but that makes no sense at all.  How can they possible know what things will possible malfunction on your device?  Anything that they think is highly likely to malfunction they would have addressed in desiging and manufacturing the device in the first place, during development.  They've made and sold many millions of iPhones, and many of them have lasted years without any problems (I know, I've owned such iPhones personally).  So how could they possible know if yours was any more likely to develop any issues than any of those other trouble free ones?
    It's hardware - stuff sometimes breaks randomly.  No amout of money ever guarantees or even reduces the likelyhood of random product failures.
    Take it in to Apple and see about getting it fixed.

  • Why does the highlight feature seem not to work about 1/2 the time in various ibooks.  I'm trying to take notes and about 50 pages into a book the highlight feature stopped working.

    I've long noted that the highlight feature in ibooks is clunky and fairly limited in it's note-taking features, but the last two books I've read I've had trouble getting the highlight feature to work at all.  I click and drag over text and nothing happens.  I try with command depressed and nothing happens.  If I double click a bunch it will eventually highlight one word, but nothing more.  What gives?
    Also, not to be snarky, but why can't I seem to find a button that would read text to speach for me?  How do blind people use this service, or illiterate, or dyslexic, or people like myself who can learn far more from hearing then from reading. 
    And why does the text of a book often render so that it's haf cut off of the page?

    There is a button for speech within the iBooks menu. Edit > Speech. You might be better off buying Audiobooks. You can get them from the iTunes Store or Audible.com

  • Smart folders seems not to work with star rating. Is there a fix?

    I Rate photos with a five star rating either on iPhoto or Adobe Bridge CS5. When I create a smart folder setting the search attribute to "Rating equals 5" nothing appears on the search.

    Sorry,
    I think I misunderstood your question. You were talking about smart folders in the Finder and not about smart albums in iPhoto, right?  "Rating equals 5" does not work on any of my machines, neither in Snow leopard nor in Lion. The problem seems to be how to represent the rating in the search string. If I search for "Rating is not 5" the smart folder contains plenty of pictures, also those with a rating of five. Does anyone know how the rating is coded to be used in a search string in the Finder?

  • The usb ports on my mac book air seem not to work

    So, they do but it seems selective. On my 2008 iMac I would plug in my thumb drive and it was near instant but on my MBA ill plug it in on the right side and it rarely works but my mouse works fine there. On the left side it takes a few seconds then it works but it seems longer than my older macs. This computer isn't old about a week old, so ideas. Its not a mounting issue it dosen't show up in the disk utility, until it works.

      Reset SMC.     http://support.apple.com/kb/HT3964
      Choose the appropriate method.
      "Resetting SMC on portables with a battery you should not remove on your own".
    You can return a new Mac within 14 days of purchase.
    Return it and get another one.
    A new Mac is in warranty for 1 year from the date of purchase.
    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Genius Bar reservation
    http://www.apple.com/retail/geniusbar/
    Best.

  • Scripts in /etc/profile.d seem not to work under certain circumstances

    While already logged in, if I open up a terminal and run a script in /etc/profile.d/ to set environment variables, the changes don't seem to take. I can think of two examples:
    1) Turning on KDE4 desktop integration in openoffice. I edited /etc/profile.d/openoffice.sh and changed OOO_FORCE_DESKTOP=KDE4, but when I ran the script I got an "export: command not found" error.
    2) When replacing Sun Java with OpenJDK in order to compile and use 389-console from the AUR, I got caught up on one of the dependencies, ldapjdk (also from the AUR). The PKGBUILD for this package contains the following block of code:
    which ant
    if [ $? -eq 1 ]; then
    . /etc/profile.d/apache-ant.sh
    fi
    ant dist
    In theory this should work, as /etc/profile.d/apache-ant.sh contains the following two lines:
    export ANT_HOME=/usr/share/java/apache-ant
    export PATH=$PATH:$ANT_HOME/bin
    However, upon running makepkg I got an error about "ant" not being in my path. To get around this I just edited the PKGBUILD and put the full path to ant, but this shouldn't have been necessary. The original PKGBUILD should have worked. I seem to have something out of whack and I don't quite know what. If anyone could be of assistance, it would be much appreciated.

    I'm well aware of this. I never said that I started openoffice from the plasma menu. I never even started it. /etc/profile.d/openoffice.sh errored out without setting the environment variable in the current shell session. If it had worked, I would have been able to run openoffice from the terminal to test the new environment variable, which is what I was intending to do in the first place. There's no need to logout to test these sort of changes, they can be done from the terminal.
    Your solution also doesn't address the problem I had in example #2, either. makepkg should be able to set environment variables in the current shell session, using the /etc/profile.d script detailed in the example. Running makepkg has nothing to do with my graphical session.
    I know that logging out and back in will "fix" the problem, but that's not the point. The point is that a script which should be able to set an environment variable is not working properly.
    Last edited by archtaku (2010-08-21 00:58:53)

  • I tried to copy a formula from one field (max of a, b) to another (min of a,b). Paste seems not to work.

    Hello,
    I am creating a form from a PdF file. In this form, there is a lot of calculated fields with formulas adressing the same fields (ie : max of a,b,c,d and min of a,b,c,d).
    As the process to select the fields you use for the formula is a rather slow one, I tried to copy the selected fiels from one field to another (select the fields in the properties window, right clic, then copy). I couldn't paste what I copied.
    I work with Acrobat X pro, in win 7.
    Thanks for your help

    Good day!
    A simple Paste does not work for you?
    It should place the clipboard content as a new Layer which you can then move around.
    If there is any chance that the elements need to be scaled, rotated etc. I would prefer to place them as Smart Objects (File > Place …) and do the masking that is specific to the images themselves in those.
    Regards,
    Pfaffenbichler

  • XSQL and insertion in temporary table: seems not to work

    Using XSQL 9.0.2.0.0 and 9i Database.
    XSQL does not really inserts rows in temporary table.
    Given a regular table and a temporary table:
    create table toto (id number, name varchar2(30));
    create global temporary table toto_tmp
    on commit delete rows as
    select * from toto where 1=2;
    -- XSQL database connection is set to <autocommit>false</autocommit> in XSQLConfig.xml
    -- XSQL insertion in regular toto table:
    -- with commit-batch-size="0" xsql:insert-request does not issue commit:
    <xsql:insert-request commit-batch-size="0" table="toto" transform="params.xsl"/>
    <xsql:dml>
    begin
    -- PL/SQL processing
    commit;
    end;
    </xsql:dml>
    -- Data inserted in table TOTO are "seen" from the XSQL:DML block
    But if inserting in temporary table TOTO_TMP using:
    <xsql:insert-request commit-batch-size="0" table="toto_tmp" transform="params.xsl"/>
    the XSQL:DML do not see the inserted rows !
    This works as if commit-batch-size="0" had no effect when using temporary table!
    Thank you for help.

    Hi Subhash,
    thanks for your help.
    We are on AIX on our database sever and using Oracle 11.
    Our app servers are using on Linux.
    Best regards
    Carlos

  • AUS auto populate device seems not to work.

    I'm running CSM 4.0.1 and followed the instructions on how to use CSM to update an ASA5540 filewall through AUS. I created a policy in CSM with the AUS IP address and credentials and chose 'Device' to deploy to.
    On page 1-3 of "Getting Started with AUS" it states: When you use Security Manager to deploy configurations to a device through AUS, the device is automatically added to the AUS inventory after the device successfully contacts AUS and retrieces the configuration. This is the normal method for adding devices."
    The AUS fails the attempt with this error message:
    CALLHOME-DB-DEVICE_NOT_FOUND: Record for device with ID Remote-ASA-1 could not be found. Action: Please ensure the device was added to the AUS and that the device config contains the correct device ID.
    And the ASA device (8.4.1) with debug turned on, displays this error msg:
    Remote-ASA-1# Auto-update client: Sent DeviceDetails to /autoupdate/AutoUpdateServlet of server 164.72.44.162
    Auto-update client: Processing UpdateInfo from server 164.72.44.162
    Auto-update client: Failed to contact: https://164.72.44.162/autoupdate/AutoUpdateServlet, reason: ErrorList error code: CALLHOME-DB-DEVICE_NOT_FOUND, description: Record for device with ID Remote-ASA-1 could not be found.
    It's complaining the the device ID is not found. But the hostname of the ASA is the same as the device ID in CSM.
    Is there something I'm missing or not doing for this to work?

    Hello Jeff,
    there are few things to make the AUS work, let's try to list it and make sure we have everything in place.
    1- we need to configure the device for AUS. Let do it via CSM:
    in the Device View select your firewall and configure your AUS server via
    Device Admin ->Server Access->AUS
    The ip address will be the same as CSM and credential the same you use to login in the CSM Server
    2- deploy to the ASA to make sure it has teh AUS config. The config deployed should look like:
    auto-update device-id hostname
    auto-update server https://*@/autoupdate/AutoUpdateServlet source
    3- make sure that the hostname of the device is THE SAME as the display name in CSM (you can check that by right clicking on the device and click on device properties)
    4- we are now ready to setup the AUS server. Right click on the device and select Device Properties. In the Autoupdate section (at the bottom)
    complete the fields by putting all the needed info. The server name and ip address should be the same as the CSM (AUS is running on the same server)
    and the credentials are the same used to login in the CSM gui and used at point 1
    5- Once this is setup, you are ready for the first deployment. It is important to deploy just after because the CSM needs to create the right configuration file on the AUS server. After the first deployment you should be able to see the device listed in the AUS portal (under devices)
    Let me know if it worked.
    Stefano

  • Infra Red seems not to work on my device

    Dear all,
    I just install the SDK on my Windows 8 machine runing on a Dell Precision M6000 with :
    - Intel core I7,3Hz CPUn 16 Ram
    When I run the sample from browser SDK, and select the Infrared Basic WPF demo, my Kinect screen is completly black.
    Running all Other sample is woring ok, seems just the infrared.
    I just would like to be sure my device is ok or not based on those test sample
    What could be the problem, the room has too much light ?
    thanks for advise
    regards
    serge

    It sounds like you may need to update your graphics card drivers from the NVidia/AMD/Intel site manually.
    Brekel

Maybe you are looking for

  • Problem with adjusting both transparency and color of an object

    I am writing a program where when an object is picked, both it's transparency and color will be altered (the object will become opaque, and its color will turn to a predefined "selected" color), while the previously selected object will return to its

  • Has anyone had a problem with their phone dialer since 4.3 upgrade?

    My phone is useless unless I want to call someone from my contacts. As soon as I touch the phone app I get an error stating my contacts have stopped. I cant get this fixed. I've called Samsung and Verizon and tried all their suggestions and nothing w

  • Configure between tomacat 5.1 to weblogic 8.1

    Hi All Please help on this topic how to call EJB from my servlet program suppose in my servlet program , i want to validate the username and password in database ,, through i am calling the EJB Client , how to configure to call the EJB Application,,

  • Backing up database and archivelogs with grid control.

    So I was scheduling a job to backup the entire database and archive logs to an ASM diskgroup.  Well for some reason.... the backup of both the datafiles and archivelog files keep going to my $ORACLE_HOME/db/dbs directory.  I have no clue as I've drop

  • Urgent:Time Entry Rule Creating Issue on Hitting Back Button

    Hello, We have created a Time Entry Rule to see if one of the Field either a Department or Project on the TimeCard is entered. The validation works fine for the first time when hitting the continue button. However on hitting the back button the valid