diff options
author | stephan <stephan@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2010-05-05 18:03:07 +0000 |
---|---|---|
committer | stephan <stephan@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2010-05-05 18:03:07 +0000 |
commit | c78afd95b6998b99525aadd6de2ceded7dc1f26e (patch) | |
tree | 9e4f9090fe5bf802a96658a1f62eec0be0fdd457 /linux/X/compat/neo_mods | |
parent | 86ae91fb7cb2589fd545f275989ab96670f8b8cf (diff) | |
download | neo-layout-c78afd95b6998b99525aadd6de2ceded7dc1f26e.tar.gz neo-layout-c78afd95b6998b99525aadd6de2ceded7dc1f26e.tar.bz2 neo-layout-c78afd95b6998b99525aadd6de2ceded7dc1f26e.zip |
Update des xkb-Treibers
• Dateien auf xkeyboard-config angeglichen (darunter viel refactoring des Neo-Treibers)
• 2 für Neo unwichtige Types auskommentiert (sollte das Problem mit dem X-Server fixen)
git-svn-id: https://svn.neo-layout.org@2308 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'linux/X/compat/neo_mods')
-rw-r--r-- | linux/X/compat/neo_mods | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/linux/X/compat/neo_mods b/linux/X/compat/neo_mods deleted file mode 100644 index b45f576..0000000 --- a/linux/X/compat/neo_mods +++ /dev/null @@ -1,30 +0,0 @@ -// Neo special modifiers -default partial xkb_compatibility "default" { - include "neo_mods(caps_lock)" - include "neo_mods(shift_fix)" - include "neo_mods(level5_lock)" -}; - -partial xkb_compatibility "caps_lock" { - // Keysym Caps_Lock locks Lock modifier - // No need for modifier-mapping - interpret Caps_Lock { - action = LockMods(modifiers = Lock); - }; -}; - -partial xkb_compatibility "shift_fix" { - // Seems like symbols/level3(caps_switch) does something evil to the left shift-key. - // This should do the trick: - interpret Shift_L { - action = SetMods(modifiers = Shift); - }; -}; - -partial xkb_compatibility "level5_lock" { - virtual_modifiers NumLock; - // NumLock is misused for level5-lock-indication - interpret ISO_Level5_Lock { - action = LockMods(modifiers = NumLock); - }; -}; |