.xbindkeysrc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. #keystate_numlock = enable
  29. #keystate_scrolllock = enable
  30. #keystate_capslock = enable
  31. #music
  32. #"$HOME/bin/music"
  33. # m:0x40 + c:56
  34. # Mod4 + b
  35. #Volume UP extra
  36. "~/bin/pavolume.sh --up"
  37. m:0x9 + c:21
  38. Shift+Alt + equal
  39. #Screeenshot
  40. "import -window root /tmp/foo.png; cat /tmp/foo.png | xclip -selection clipboard -t image/png"
  41. m:0x0 + c:107
  42. Print
  43. #Seek Forward Song lil
  44. "mpc seek +10"
  45. m:0x8 + c:35
  46. Alt + bracketright
  47. #Seek Forward Song
  48. "mpc seek +120"
  49. m:0x9 + c:35
  50. Shift+Alt + bracketright
  51. #Seek Backward Song lil
  52. "mpc seek -10"
  53. m:0x8 + c:34
  54. Alt + bracketleft
  55. #Seek Backward Song
  56. "mpc seek -120"
  57. m:0x9 + c:34
  58. Shift+Alt + bracketleft
  59. #Webcam
  60. "$HOME/bin/mywebcam"
  61. m:0x40 + c:54
  62. Mod4 + c
  63. #$BROWSER
  64. "google-chrome-stable"
  65. m:0x40 + c:25
  66. Mod4 + w
  67. #
  68. # End of xbindkeys configuration