diff options
author | knittl <knittl@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-01-13 11:27:48 +0000 |
---|---|---|
committer | knittl <knittl@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-01-13 11:27:48 +0000 |
commit | cb1fcc271724f488baf17364517a16593c13dcc1 (patch) | |
tree | cbbc2fb7e1d9073d7c5a2e4484a7b32453fa491c /linux | |
parent | 249c39d4518e91340b71567f581d72a56e97a345 (diff) |
trying to fix ticket #33, use hexcode for ISO_Level5_Shift
git-svn-id: https://svn.neo-layout.org@1435 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'linux')
-rw-r--r-- | linux/X/de | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -236,7 +236,7 @@ xkb_symbols "neo" { // Levels in Xkbmap jargon to be found here in the definitions. // These are the levels used, and Xorg's translations with type="EIGHT_LEVEL": // -------------------------------------------------------------- - // Modifier: None Shift Mod3 Shift+Mod3 Mod4 Shift+Mod4 Mod3+Mod4 +a // Modifier: None Shift Mod3 Shift+Mod3 Mod4 Shift+Mod4 Mod3+Mod4 // Xorg calls it: Level1 Level2 Level3 Level4 Level5 Level6 Level7 // Neo calls it: Ebene1 Ebene2 Ebene3 Ebene5 Ebene4 Ebene4+Shift Ebene6 @@ -250,8 +250,9 @@ xkb_symbols "neo" { // Definition of the so called Neo-Mod4 key.type[Group1]="ONE_LEVEL"; - key <LSGT> { [ ISO_Level5_Shift ]}; - key <RALT> { [ ISO_Level5_Shift ]}; + // ISO_Level5_Shift was causing problems, though it's defined in my /usr/include/X11/keysymdef.h on Ubuntu 8.10 (ticket #33), using hexcode again for now + key <LSGT> { [ 0xfe11 ]}; + key <RALT> { [ 0xfe11 ]}; modifier_map Mod3 { <LSGT>, <RALT> }; // Attention: ^^^ This is a X server variable, not the Neo-Mod3. |