Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1.  
  2. ! = <1:Key> <2:Shift+Key> <3:mode_switch+Key> <4:mode_switch+Shift+Key> <5:AltGr+Key> <6:AltGr+Shift+Key> <7:Ctrl+Alt+Key>
  3.  
  4. ! Clear both Alt keys mapping
  5. clear Mod1
  6. add mod1 = Alt_L
  7. ! Make the right alt key to be the mode switch key
  8. keycode 108 = Mode_switch
  9.  
  10. keycode 67 = XF86Back F1 F1 F1 F1 F1 XF86Switch_VT_1
  11. keycode 68 = XF86Forward F2 F2 F2 F2 F2 XF86Switch_VT_2
  12. keycode 69 = XF86Refresh F3 F3 F3 F3 F3 XF86Switch_VT_3
  13.  
  14. ! "Full screen" key
  15. keycode 70 = F11 F4 F4 F4 F4 F4 XF86Switch_VT_4
  16.  
  17. ! "Rename" key
  18. keycode 71 = F2 F5 F5 F5 F5 XF86Switch_VT_5
  19.  
  20. keycode 72 = XF86MonBrightnessDown F6 F6 F6 F6 F6 XF86Switch_VT_6
  21. keycode 73 = XF86MonBrightnessUp F7 F7 F7 F7 F7 XF86Switch_VT_7
  22.  
  23. ! Right alt+keys will make it multimedia control keys
  24. keycode 74 = XF86AudioMute F8 XF86AudioStop F8 F8 F8 XF86Switch_VT_8
  25. keycode 75 = XF86AudioLowerVolume F9 XF86AudioPrev F9 F9 F9 XF86Switch_VT_9
  26. keycode 76 = XF86AudioRaiseVolume F9 XF86AudioNext F10 F10 F10 XF86Switch_VT_10
  27.  
  28. ! The "search" key is mapped to delete :)
  29. ! Alt+Search will make it caps lock
  30. keycode 133 = Delete Delete Caps_Lock NoSymbol
  31.  
  32. ! Right alt+arrows will make page up page down home and end
  33. keycode 111 = Up Up Prior Prior Up Up
  34. keycode 116 = Down Down Next Next Down Down
  35. keycode 113 = Left Left Home Home Left Left
  36. keycode 114 = Right Right End End Right Right
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement