2 # xbindkeys configuration #<br> 3 ###########################<br> 4 #<br> 5 # Version: 1.5.4<br> 6 #<br> 7 # If you edit this file, do not forget to uncomment any lines<br> 8 # that you change.<br> 9 # The pound(#) symbol may be used anywhere for comments.<br> 10 #<br> 11 # To specify a key, you can use 'xbindkeys --key' or<br> 12 # 'xbindkeys --multikey' and put one of the two lines in this file.<br> 13 #<br> 14 # The format of a command line is:<br> 15 # "command to start &"<br> 16 # associated key<br> 17 #<br> 18 # Please, don't forget the '&' at the end of the command,<br> 19 # if not xbindkeys will launch only one command at the same time<br> 20 #<br> 21 #<br> 22 # A list of keys is in /usr/include/X11/keysym.h and in<br> 23 # /usr/include/X11/keysymdef.h<br> 24 # The XK_ is not needed.<br> 25 #<br> 26 # List of modifier (on my keyboard):<br> 27 # Control, Shift, Mod1 (Alt), Mod2 (NumLock),<br> 28 # Mod3 (CapsLock), Mod4, Mod5 (Scroll).<br> 29 #<br><br><br><br><br> 30 # By defaults, xbindkeys does not pay attention with the modifiers<br> 31 # NumLock, CapsLock and ScrollLock.<br> 32 # Uncomment the lines above if you want to pay attention to them.<br><br><br> 33 #keystate_numlock = enable<br> 34 #keystate_capslock = enable<br> 35 #keystate_scrolllock= enable<br><br><br> 36 # Examples of commands:<br><br><br> 37 "xbindkeys_show &"<br> 38 control+shift + q<br><br><br> 39 # set directly keycode (here control + f with my keyboard)<br> 40 "konsole &"<br> 41 m:0x50 + c:45<br> 42 Mod2+Mod4 + k<br><br><br><br><br> 43 # specify a mouse button<br> 44 #"konsole &"<br> 45 # m:0x50 + b:2 (mouse)<br><br><br> 46 ## win+a acroread<br> 47 "acroread &"<br> 48 m:0x50 + c:38<br> 49 Mod2+Mod4 + a<br><br><br> 50 ## win+g gmip<br> 51 "gimp &"<br> 52 m:0x50 + c:42<br> 53 Mod2+Mod4 + g<br><br><br> 54 ## win+p xpdf<br> 55 "xpdf &"<br> 56 m:0x50 + c:33<br> 57 Mod2+Mod4 + p<br> |