home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / X11R6 / lib / X11 / xkb / symbols / ctrl < prev    next >
Text File  |  1999-09-03  |  1KB  |  32 lines

  1. // eliminate the caps lock key completely (replace with control)
  2. partial modifier_keys 
  3. xkb_symbols "nocaps" {
  4.     key <CAPS>    {  symbols[Group1]= [ Control_L ] };
  5.     modifier_map  Control { <CAPS>, <LCTL> };
  6. };
  7.  
  8. // swap the caps lock key with the left control key
  9. partial modifier_keys 
  10. xkb_symbols "swapcaps" {
  11.     key <CAPS>    {  symbols[Group1]= [ Control_L ] };
  12.     key <LCTL>    {  symbols[Group1]= [ Caps_Lock ] };
  13. };
  14.  
  15. // moves the control key to the middle row and the caps lock
  16. // to the bottom row.  Only works if the geometry or keycodes
  17. // file has defined appropriate aliases for the keys in question.
  18. partial modifier_keys 
  19. xkb_symbols "ctrl_ac" {
  20.     key <AC00>    {  symbols[Group1]= [ Control_L ] };
  21.     key <AA00>    {  symbols[Group1]= [ Caps_Lock ] };
  22. };
  23.  
  24. // Moves the control key to the bottom row and the caps lock
  25. // to the middle row.  Only works if the geometry or keycodes
  26. // file has defined appropriate aliases for the keys in question.
  27. partial modifier_keys 
  28. xkb_symbols "ctrl_aa" {
  29.     key <AA00>    {  symbols[Group1]= [ Control_L ] };
  30.     key <AC00>    {  symbols[Group1]= [ Caps_Lock ] };
  31. };
  32.