Share Pastebin
Guest
Public paste!

root

By: a guest | Jul 30th, 2009 | Syntax: None | Size: 1.14 KB | Hits: 25 | Expires: Never
Copy text to clipboard
  1. ###########################
  2. # xbindkeys configuration #
  3. ###########################
  4. #
  5. # Version: 0.1.3
  6. #
  7. # If you edit this, do not forget to uncomment any lines that you change.
  8. # The pound(#) symbol may be used anywhere for comments.
  9. #
  10. # A list of keys is in /usr/include/X11/keysym.h and in
  11. # /usr/include/X11/keysymdef.h
  12. # The XK_ is not needed.
  13. #
  14. # List of modifier (on my keyboard):
  15. #   Control, Shift, Mod1 (Alt), Mod2 (NumLock),
  16. #   Mod3 (CapsLock), Mod4, Mod5 (Scroll).
  17. #
  18. # Another way to specifie a key is to use 'xev' and set the
  19. # keycode with c:nnn or the modifier with m:nnn where nnn is
  20. # the keycode or the state returned by xev
  21. #
  22. # This file is created by xbindkey_config
  23. # The structure is :
  24. # # Remark
  25. # "command"
  26. # m:xxx + c:xxx
  27. # Shift+...
  28.  
  29.  
  30.  
  31.  
  32. #keystate_numlock = enable
  33. #keystate_scrolllock = enable
  34. #keystate_capslock = enable
  35.  
  36.  
  37.  
  38. "xbindkeys_show"
  39.    control+shift + q
  40.  
  41. # set directly keycode (here control + f with my keyboard)
  42. "xterm"
  43.    c:41 + m:0x4
  44.  
  45. # specify a mouse button
  46. "xterm"
  47.    control + b:2
  48.  
  49. #  Control + b:2 + Release
  50. "alltray"
  51.     alt + a
  52.     ##################################
  53.  
  54. #
  55. # End of xbindkeys configuration