.xbindkeysrc 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # For the benefit of emacs users: -*- shell-script -*-
  2. ###########################
  3. # xbindkeys configuration #
  4. ###########################
  5. #
  6. # Version: 1.8.6
  7. #
  8. # If you edit this file, do not forget to uncomment any lines
  9. # that you change.
  10. # The pound(#) symbol may be used anywhere for comments.
  11. #
  12. # To specify a key, you can use 'xbindkeys --key' or
  13. # 'xbindkeys --multikey' and put one of the two lines in this file.
  14. #
  15. # The format of a command line is:
  16. # "command to start"
  17. # associated key
  18. #
  19. #
  20. # A list of keys is in /usr/include/X11/keysym.h and in
  21. # /usr/include/X11/keysymdef.h
  22. # The XK_ is not needed.
  23. #
  24. # List of modifier:
  25. # Release, Control, Shift, Mod1 (Alt), Mod2 (NumLock),
  26. # Mod3 (CapsLock), Mod4, Mod5 (Scroll).
  27. #
  28. # The release modifier is not a standard X modifier, but you can
  29. # use it if you want to catch release events instead of press events
  30. # By defaults, xbindkeys does not pay attention with the modifiers
  31. # NumLock, CapsLock and ScrollLock.
  32. # Uncomment the lines above if you want to pay attention to them.
  33. #keystate_numlock = enable
  34. #keystate_capslock = enable
  35. #keystate_scrolllock= enable
  36. # User commands
  37. "st -f 'Bitstream vera sans mono:pixelsize=24:antialias=true:autohint=false'"
  38. Mod4 + Shift + Return
  39. "brightnessctl set 5%-"
  40. Mod4 + F5
  41. "brightnessctl set 5%+"
  42. Mod4 + F6
  43. "amixer -q sset Master 5%-"
  44. Mod4 + F11
  45. "amixer -q sset Master 5%+"
  46. Mod4 + F12
  47. ## set directly keycode (here control+alt+mod2 + f with my keyboard)
  48. #"xterm"
  49. # alt + c:0x29 + m:4 + mod2
  50. #
  51. ## Control+Shift+a release event starts rxvt
  52. #"rxvt"
  53. # release+control+shift + a
  54. #
  55. ## Control + mouse button 2 release event starts rxvt
  56. #"rxvt"
  57. # Control + b:2 + Release
  58. ##################################
  59. # End of xbindkeys configuration #
  60. ##################################