Advertisement
BSDG33KCLUB

OpenBSD .Xbindkeysrc (decwindows)

Mar 17th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. # For the benefit of emacs users: -*- shell-script -*-
  2. ###########################
  3. # xbindkeys configuration #
  4. ###########################
  5. #
  6. # Version: 1.8.5
  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.  
  29. # The release modifier is not a standard X modifier, but you can
  30. # use it if you want to catch release events instead of press events
  31.  
  32. # By defaults, xbindkeys does not pay attention with the modifiers
  33. # NumLock, CapsLock and ScrollLock.
  34. # Uncomment the lines above if you want to pay attention to them.
  35.  
  36. #keystate_numlock = enable
  37. #keystate_capslock = enable
  38. #keystate_scrolllock= enable
  39.  
  40. # Examples of commands:
  41.  
  42. "xbindkeys_show"
  43. control+shift + q
  44.  
  45. # set directly keycode (here control + f with my keyboard)
  46. #"xterm"
  47. # c:41 + m:0x4
  48.  
  49. "dmenu_run"
  50. Mod4 + p
  51.  
  52. "chrome"
  53. Mod4 + w
  54.  
  55. "geany"
  56. Mod4 + e
  57.  
  58. "pcmanfm"
  59. Mod4 + f
  60.  
  61. "smplayer"
  62. Mod4 + s
  63.  
  64. "urxvt -e xmms2"
  65. Mod4 + a
  66.  
  67. "urxvt -e mc"
  68. Mod4 + m
  69.  
  70. "gimp"
  71. Mod4 + g
  72.  
  73. "urxvt -e /bin/bash"
  74. Mod4 + t
  75.  
  76. "lxappearance"
  77. Mod4 + l
  78.  
  79. "nitrogen"
  80. Mod4 + n
  81.  
  82. "urxvt -e weechat"
  83. Mod4 + i
  84.  
  85. "pkill X"
  86. Mod4 + q
  87.  
  88.  
  89.  
  90.  
  91. # specify a mouse button
  92. "xterm"
  93. control + b:2
  94.  
  95. #"xterm -geom 50x20+20+20"
  96. # Shift+Mod2+alt + s
  97. #
  98. ## set directly keycode (here control+alt+mod2 + f with my keyboard)
  99. #"xterm"
  100. # alt + c:0x29 + m:4 + mod2
  101. #
  102. ## Control+Shift+a release event starts rxvt
  103. #"rxvt"
  104. # release+control+shift + a
  105. #
  106. ## Control + mouse button 2 release event starts rxvt
  107. #"rxvt"
  108. # Control + b:2 + Release
  109.  
  110. ##################################
  111. # End of xbindkeys configuration #
  112. ##################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement