I need a WM that don't have hotkeys

Hello, I usually play games that need a lot of Essential Hotkeys like "Esc", "ALT+Click", and a lot of combinations. But my WM have all these keys binded, and I can't play well.
I can Execute a graphical application (like a Warcraft III) without any WM? Or there is a WM that don't have any hotkey binded (In KDE I have removed all hotkeys and works well, except "Esc" Key, and I need it fully for the game...
Greetings

Xilon wrote:
X && exec wow.exe?
Or
If you start X with startx, you can just change your xinitrc to exec xterm instead of your window manager. From there you can start whatever games you want to play. This has the additional benefit of freeing up more RAM.
Thought you can just start the game you want directly instead of starting a term.
Well you could run different games this way without having to edit your .xinitrc file

Similar Messages

  • Tutorial: Virtual Numpad on laptops that don't have one built-in

    Hi all! After getting so much good help from the people on Arch forums, I thought it was time to give back.
    You remember how on older laptops, you would hit numLock and a portion of your keyboard would become a numpad? (specifically, the 789uiojklm keys) Well, recently I got a new Lenovo Y40 and I never knew how much I loved having a numpad until I found that my new laptop didn't have one. Unfortunately, the Y40 does not come with this feature out of the box, but luckily, Arch Linux is on our side. I am going to tell you how I set up my own virtual numpad using tools that come built-in with X.
    Before we start, I should point out that everything I learned in order to do this was found here:
    https://wiki.archlinux.org/index.php/X_ … _Modifiers
    From the warnings section:
    It is possible (and, in fact, easy) to end up disabling some keys on your keyboard for the current X session while working with XKB. This includes modifiers, cursor arrows and Enter key, as well as C-A-Backspace and C-A-Fx combinations. Make sure you have some way to terminate the session without using your keyboard.
    While it is rare, changing XKB configuration can sometimes hang or crash X server. Make sure you can handle it. Having some way to killall X or reboot the host remotely may be a good idea.
    Stop xxkb, or any other layout switching applications. xxkb actively changes XKB state. Debugging both at the same time is not a good idea.
    And finally, be warned: it is very easy to get used to custom layout.
    If you want to learn more, that wiki article is the best available xkbcomp documentation for people who aren't X developers (lit. me). And with that, let's get started!
    Getting Set Up + xkb Background Info
    The first thing we will do is run the command
    xkbcomp $DISPLAY outfile.xkb
    This will spit out the code that represents the current keyboard layout. Our end goal will be to code in what we need into this file, and upload it back to the X server. I recommend editing this file in an editor with C/C++-style syntax highlighting, since it might prevent you from making syntactical errors.
    There are many sections to the .xkb file, but we will only concern ourselves with xkb_types, xkb_compatibility, and xkb_symbols.
    xkb_types lets you define types for each of the keys on your keyboard. For example, if you use Canadian Multilingual Standard (like I do) most of your keys are given the type "EIGHT_LEVEL_SEMIALPHABETIC". When a "special key" like ctrl, alt, caps lock, etc is pressed, in xkb_types, we map these modifiers to "LevelN", and different combinations will mean different things for different types. For 8-level-semialphabetic, no special keys pressed is "Level1", Shift is "Level2", etc.
    If we jump forward to xkb_symbols, and look at the keys, we see that each key is assigned a type, and an array. The first element in the array is what symbol the key represents for Level1, the second is the symbol for Level2, etc.
    Finally, xkb_compatibility allows us to set which keys turn on which modifiers (as well as other things).
    So with that, let's get started
    Editing the layout
    We will begin by editing the xkb_types section. First, we will pick an unused type from xkb_types (you could create your own, but it will be more work). It doesn't matter which type you picked, so long as none of your keys use it. Take down the name. Now delete the unused type, and in its place, copy paste the type that your keys used already. Finally, change the name of the copy to the type you deleted. For example, I deleted EIGHT_LEVEL_ALPHABETIC, copied and pasted EIGHT_LEVEL_SEMIALPHABETIC, and changed the name on the copy back to EIGHT_LEVEL_ALPHABETIC. Next, change the modifiers variable to accept NumLock. This is done by concatenating '+NumLock' before the semicolon. Lastly, we will bind it to a level. You can create a level, or simply pick one that you were not using, and add the line (where N is the desired Level)
    map[NumLock]= LevelN;
    Next, we will turn our attention to xkb_compatibility. Simply copy paste this code into the xkb_compatibility section, taking care to replace Scroll_Lock with the key you wish to use to toggle the numpad:
    interpret Scroll_Lock {
    virtualModifier= NumLock;
    action= LockMods(modifiers=NumLock);
    Now comes the more tedious part of editing the layout. For every key that is part of your virtual numpad, change the type to the copy we made earlier. (In my example, I would change EIGHT_LEVEL_SEMIALPHABETIC to EIGHT_LEVEL_ALPHABETIC). Finally, locate the Nth element in the array (indexing from 1) where N is the level you bound the NumLock modifier to in xkb_types. Replace this with the desired nunmpad key. For your convenience, here is a list of the numpad keys I used:
    KP_0
    KP_1
    KP_2
    KP_9
    KP_Add
    KP_Subtract
    KP_Divide
    KP_Multiply
    KP_Decimal
    For example, here is the entry for my 'u' key (note the KP_4):
    key <AD07> {
    type= "EIGHT_LEVEL_ALPHABETIC",
    symbols[Group1]= [ u, U, NoSymbol, NoSymbol, downarrow, uparrow, NoSymbol, KP_4 ]
    If you are wondering what to do if you want to bind numpad keys to your Fx keys, I added a note at the end of the post.
    Uploading the layout to the X Server
    And now the moment of truth. First, run
    xkbcomp myNewLayout.xkb
    This will NOT upload to the X Server yet; it will only compile the file and check its syntax. One cryptic error I got was because I used C-style /*block quotes*/. xkbcomp doesn't like these, but it doesn't mind //this kind of comment. If we have no errors, we can now upload with
    xkbcomp myNewLayout.xkb $DISPLAY
    Well, go ahead and try it out, there will almost surely be some really neat tweaks you can do.
    Extra Stuff/Notes
    When you hit Scroll_Lock (or whichever key it was you chose) it locks the new type we made to LevelN. This is why we went to the trouble of making a new type, so that the rest of the keyboard would not be locked in LevelN mode. For example, on my setup, I first tried this without creating a new type, and found that the rest of my keyboard was not behaving normally, since it was also bound to Level8 (my desired numpad level). So, I created a new type for my numpad keys so that the rest of the keyboard would still act in its usual manner even when I had the numpad on.
    If you're wondering, I bound KP_Multiply and KP_Divide to my F8 and F9 keys. However, I didn't need to change the type, since the level I chose (Level4) also caused the Fx keys to act normally (except if I rebound them). That is, before I changed anything, all the Fx had the corresponding Fx key bound to Level4. I simply changed the Level4 keybinds for F8 and F9. This meant that when I activated the virtual numpad, F8 and F9 were KP_multiply and KP_Divide, and the rest of the function keys were what they were usually.
    Hopefully, this tutorial won't only help you to make a virtual numpad, but maybe help some other newbies like me to further customize their system. And the Arch Wiki author is right, you really do get used to the new layout and it becomes frustrating to use other computers!
    Happy trails.
    - Marco
    Last edited by mahkoe (2014-11-02 12:17:49)

    Ikester wrote:
    Re: My laptops that don't have a linksys card, but built in wireless can stay connected to WEP
    OK since your security is set to WPA why do you want to go to WEP? DS? If everything is configured correctly you should not have to change anything. If you are connecting another device and forgot what your WPA setting were just go into the router and take a look see.
    1. I set up everything, its all fine and ok
    2. The DS can't connect to WPA, only WEP or Open
    3. I know what my WPA settings are and the codes to both settings

  • [svn:osmf:] 14871: Fixing anchoring 'right' and 'bottom' properties not being applied on items that don't have a width/ height and position set.

    Revision: 14871
    Revision: 14871
    Author:   [email protected]
    Date:     2010-03-19 01:05:54 -0700 (Fri, 19 Mar 2010)
    Log Message:
    Fixing anchoring 'right' and 'bottom' properties not being applied on items that don't have a width/height and position set.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRenderer.as

    If you're just doing it in a back and forth or spiral fashion, you don't need to check whether a square's been filled in. You just go from a start point to an end point. Those points and the squares in between are determined by simple arithmetic.
    If you're doing it randomly, I wouldn't use the GUI elements themselves. I'd have, for example, and array of booleans that tells whether each square has been filled in.

  • Add-on to capture videos from internet that don't have a download link.

    Is there an add-on to capture videos from internet that don't have a download link. I am on a Mac.

    In general, you don't need drivers for camcorders on Macs, and the .exe file you downloaded is a Windows program, which won't run on a Mac unless you also have Windows installed.
    It would help a lot if you tell us the exact model camcorder you are using, and what application you want to use it with.
    Regarding iTunes, the latest version is iTunes 11.  You need to have OS X 10.6.8 or later to install iTunes 11.  Your profile says you have OS X 10.4.11, which is a much older version of OS X, so you won't be able to install iTunes 11.  (Here are the iTunes 11 specs.)

  • I have a late 2011 model MacBook Pro running Mountain Lion.  I love the AirPlay mirroring feature with Apple TV...BUT, how do I mirror with TVs that don't have Apple TV?  I used to run a cable from my mini display port to the HDMI input of a TV.

    I have a late 2011 model MacBook Pro running Mountain Lion.  I love the AirPlay mirroring feature with Apple TV...BUT, how do I mirror with TVs that don't have Apple TV?  I used to run a cable from my mini display port to the HDMI input of a TV.  This feature seems to be lost in the Mountain Lion upgrade.  Did Apple feel that once Mountain Lion came out that EVERYONE would have Apple TV?  There are no settings in System Preferences/Display like there used to be...only for AirPlay Mirroring.

    Running a cable to the HDMI port is still supported. (and still works on mine).
    If the Arrangement tab in System Preferences > Displays isn't present then it doesn't recognize the physical connection.  Double check all cables.  If that doesn't work try a PRAM reset:
    http://support.apple.com/kb/ht1379

  • I've downloaded some free games for my iphone4 but they are using my internet because they have ads. does anyone know if there are any games that don't have these ads and don't require internet AT ALL?and if i disable my internet connexion, does it help?

    i've downloaded some free games for my iphone4 but they are using my internet because they have ads. does anyone know if there are any games that don't have these ads and don't require internet AT ALL?and if i disable my internet connexion, does it help?

    Thank you. I put it in airplane mode like you suggested, but it looks to me like all the applications and ads are still running. Anyway, I'm just gonna play when I'm really really bored and use them as less as possible. Thank you again for your quick answer.

  • TS1627 I Can no longer synch my iPhone and iPad to Outlook using iTunes on a Win 7 Pc.  I updated to iTunes 11.1.4.62 a few days ago.  Don't know if that caused my problem. I've reset the Synch History, deleted any Notes in Outlook that don't have a subje

    I Can no longer synch my iPhone and iPad to Outlook using iTunes on a Win 7 Pc.  I updated to iTunes 11.1.4.62 a few days ago.  Don't know if that caused my problem. I've reset the Synch History, deleted any Notes in Outlook that don't have a subject. Grateful for any help.

    You might have better luck in the iTunes for Windows community. I'll ask the hosts to relocate your post.
    iTunes for Windows

  • PSE9/Win 7: Can I create a Smart Album of all images that Don't have a certain tag?

    Using PSE9 on Windows 7.
    I'd like to create a Smart Album that contains all of the images that don't have a particular tag.
    When I click on Create New Smart Album the dialog box allows me to select 'Keyword Tags'.
    But the next item is 'Include'. Then I can select that tags I want.
    I basically want the Include to be 'Exclude'.
    Any way to do something like that?

    Hi,
    You could try this.
    1) Show all photos
    2) Check the Keyword Tag that you are interested in
    3) Under Options Select Hide best match results & Show results that do not match (i.e. reverse the last two conditions).
    to read
    That should be showing you what you wanted to see
    4) Now use the top option Save Search Criteria As Smart Album and give it a name
    That seems to remember the reversed conditions as well as the tag.
    Good Luck,
    Brian

  • I have a 5s iphone and I am unable to talk and text to my friends that don't have an iphone. I used to be able to before the latest update. How do I fix this?

    I have a 5s iphone and I am unable to talk and text to my friends that don't have an iphone. I used to be able to before the latest update. How do I fix this?

    I figured out how to fix the microphone with texting!!  I powered off my iphone. I don't know what caused the microphone to stop working, but it works now!  Thanks for trying to help.

  • HT4623 I've installed several apps that won't rotate to landscape. Lock rotation is off in settings. Is it the apps that don't have the ability to rotate or some setting on my iPad3? Thanks, CH

    I've installed several apps that won't rotate to landscape. Lock Rotation is off in settings. Is it the apps that don't have the ability to rotate or some setting on my iPad3? Thanks, CC

    Not all Apps offer that feature...
    Orientation Lock
    Settings > General > Lock Rotation..
    Double-press the home button...
    Swipe to the right until you get to the Portrait Orientation Button...
    Understanding the Side Switch
    http://support.apple.com/kb/HT4085

  • My laptops that don't have a linksys card, but built in wireless can stay connected to WEP

    I have a linksys WRT54GS Version 5, firmware 1.51.0 (updating after this)

    Ikester wrote:
    Re: My laptops that don't have a linksys card, but built in wireless can stay connected to WEP
    OK since your security is set to WPA why do you want to go to WEP? DS? If everything is configured correctly you should not have to change anything. If you are connecting another device and forgot what your WPA setting were just go into the router and take a look see.
    1. I set up everything, its all fine and ok
    2. The DS can't connect to WPA, only WEP or Open
    3. I know what my WPA settings are and the codes to both settings

  • Boot Camp Version 1.3b expired.. need to update but don't have windows.

    So let me run you through what I did so far.
    I got a version of Boot Camp 1.3 beta. I successfully installed it and began to go through the steps to set up windows. I skipped the burning the windows CD option and went straight to the partitioning. I created a 20gig partition named "Bootcamp."
    I then realized I needed to burn the windows CD from Boot Camp in order to install it. So I quit the Boot Camp Assistant Application. The option to burn the windows CD was no longer available so I scrapped the Boot Camp Assistant, re-downloaded the 1.3 beta version and installed it.
    Still no opportunity to burn the windows drivers CD disc. So I quit the assistant once again. I attempted to re-open the Boot Camp Assistant and I got an error message telling me it expired. So I set the date back on my clock to a date before the beta version expired (prior to Sept. 30, 2007).
    Then, I got this error message:
    This version of Boot Camp Assistant is not supported in Mac OS X v10.5. Use Boot Camp Assistant 2.0, located in /Applications/Utilities/.
    And that's where I am right now. I still have to have the date set back to before Sept. 30th, 2007 to get to the error message above or else it tells me the version is expired.
    So I've determined that I need to update Boot Camp to version 2.0 or higher, except I don't have windows installed on my computer yet. The mac support page tells me that I have to open windows and then install the updates to the latest version of boot camp... which I obviously can't do because I haven't installed windows yet.
    So I'm stuck with a partitioned drive and I cannot use the Boot Camp Assistant. I need the assistant to burn the windows install CD that I need..
    I'm in quite a pickle. Any help would be appreciated.. thank you.
    If you need more information let me know I'll try provide the information needed to fix this issue.
    Thank you.

    I don't have the Leopard disc because a man updated it for me in the mac store when I brought my laptop in for repairs.
    You need to get that disk to use Boot Camp. Mac OS X 10.4 disks don't contain the drivers.
    So, I have this Mac OSX install disc.. do I just insert it? And then what? How do I go about installing windows after that? I'm a little confused about how to get to the drivers and what to do I'm just not sure.
    Once you've partitioned the drive and installed Windows, start up the computer into Windows and insert the disk. The installer should automatically start.
    (44923)

  • Editing contacts that don't have names

    I'm trying to find a way to edit or delete the contact that have been created in the iPhone without names. These contacts do not show up in the "Contacts" application and don't sync with iTunes (at least, not with the gmail sync option).
    The way I think i created these contacts is from mail application.... I manually typed in their email addresses. Now, when I start to type a new email recipient's name or email address I can see these other addresses show up, but I can't edit or delete them.
    Thanks in advance

    Thank you for the response.
    If I create a new contact with the a full name and associate the email address of the virtual contact with this one it will show up in the email app with the full name. When I delete the new contact the mail app goes back to just showing the email address of this virtual contact.
    It looks like we don't have a way to delete these virtual contacts from the iPhone. How long do we need to wait before these will disappear? maybe the phone only keeps X of them in memory.

  • ARD won't access Macs that don't have assigned passwords! Any workaround?

    I posted about this issue seven or eight months ago, and I'm still waiting for a solution.
    I have several Macs in my home network, and I'd been successfully using ARD to deploy software to them -- until I bought two G5s late last spring and deliberately chose not to give them passwords. No one uses my machines but me, and I find passwords a PITA. I have to issue thousands of commands a day, and I don't need the additional steps of having to enter a password when I want to accomplish certain tasks. So I decided not to have passwords on the new machines.
    Well, that was perfectly fine until I attempted to use ARD in the usual manner. But ARD refuses to access the non-password machines! It's preposterous!! It "sees" the machines and knows their names, but it refuses to interact with them -- simply because they don't have passwords. And please note: I can access those same password-less machines perfectly fine via the Finder! I simply leave the "password" field blank, click "Connect," and voila! But the "sophisticated" (and expensive) ARD is dumber than the Finder.
    I can't begin to understand the point of this limitation. The Macintosh experience is all about customization and user-friendliness. And sure, I understand the usefulness of passwords if they are needed. But if the user does not need passwords, and if the Macs all work perfectly happily without them, then why does ARD refuse to work with a machine that the user (or more specifically, the administrator) has chosen to operate without a password?
    It is thoroughly illogical. Apple is typically such a smart company. But this is frankly one, giant, dumb mistake.
    So now, the software I purchased no longer works, simply because I'd prefer not to have passwords on my own computers. And I've been forced to revert to the archaic method of software distribution: via the Finder, one computer at a time! Can someone explain what possible benefit this ridiculous limitation might have?
    On second thought, forget the explanation. That's Moot. What I need is for this to be fixed, but until then, a workaround. Any suggestions?
    (And Apple, PLEASE, PLEASE fix this!)

    Yes. Remove them from the Master List, then re-add
    them there. Just enter the admin name—no password.
    Will work until the remote computers are rebooted or
    ARD is relaunched.
    Hello, Ast A. Moore,
    I am happy to report that your suggestion worked! Frankly I'm in shock. I've been "crippled" for several months. I should add one detail, however, for anyone else who might read this thread:
    Upon re-adding a deleted computer, a sheet appears with a checkbox that says "Verify Remote Desktop name and password before adding." Since I am not using passwords, it seemed logical to uncheck that option, but that was the wrong move. It must be checked in order for this method to work.
    It would be ideal if ARD would save these settings, even after a reboot or relaunch, because repeating this delete/re-add step for several machines is tedious. But until Apple updates ARD, I do appreciate this workaround. Thanks again.

  • Report based on fact tables that don't have the same dimensionality

    Hi all
    I want to combine in the same report different measures from different fact tables that doesn't have the same dimensionality,for example:
    measure 1 linked to dimensions : time geography and product
    measure 2 linked to dimensions : time and geography
    Currenctly when I create a report like:
    time----gepgraphy---product------measure 1-----measure 2 I don't have any data for measure2 because it's not linked to the product dimension.
    The exact report is year---store name---product area name----- store sales-----number of visitors : the number of vistors doesn't have any relation with the product dimension.
    Is there a way to create this kind of report??
    Regards

    Don't take this the wrong way guys, but I feel compelled to say this before the answers start coming in:
    This issue had been discussed already many times. Stijn, John, Kishore etc. have all answered this question for the one or the other user. This forum has a search functionality for a reason. To first look for information and then ask your question. Why wait - potentially - a couple of hours for an answer that's one search away?
    Seriously people. It's not like forums magically appeared in 2k7...they've been around for quite a while now and netiquette and common sense with regards to posting should become normal.
    Cheers,
    C.

Maybe you are looking for