I forgot to do "git add -A" last time. Here are the new files.
[easy-deb-chroot] / fremantle / easy-deb-chroot / src / home / user / .xbindkeysrc
1 # For the benefit of emacs users: -*- shell-script -*-
2 ###########################
3 # xbindkeys configuration #
4 ###########################
5 #
6 # The pound(#) symbol may be used anywhere for comments.
7 #
8 # To specify a key, you can use 'xbindkeys --key' or
9 # 'xbindkeys --multikey' and put one of the two lines in this file.
10 #
11 # The format of a command line is:
12 #    "command to start"
13 #       associated key
14 #
15 #
16 # A list of keys is in /usr/include/X11/keysym.h and in
17 # /usr/include/X11/keysymdef.h
18 # The XK_ is not needed.
19 #
20 # List of modifiers:
21 #   Release, Control, Shift, Mod1 (Alt), Mod2 (NumLock),
22 #   Mod3 (CapsLock), Mod4, Mod5 (Blue Fn).
23 #
24
25 # The release modifier is not a standard X modifier, but you can
26 # use it if you want to catch release events instead of press events
27
28 # By default, xbindkeys does not pay attention to the modifiers
29 # NumLock, CapsLock and ScrollLock.
30 # Uncomment the lines above if you want to pay attention to them.
31
32 #keystate_numlock = enable
33 #keystate_capslock = enable
34 #keystate_scrolllock= enable
35
36 ###############################################################
37 # NEW as of Sept 2010:
38 # Make keyboard active in current window with Fn+Return
39 # (you need the /home/user/.kbdactive script, of course!)
40 ###############################################################
41
42   "/home/user/.kbdactive"
43     m:0x80 + c:36
44     Mod5 + KP_Enter
45
46 ###############################################################
47
48   "wmctrl -r :ACTIVE: -b toggle,fullscreen"
49     m:0x4 + c:111
50     Control + Up
51
52   "wmctrl -r :ACTIVE: -b toggle,fullscreen"
53     m:0x4 + c:65
54     Control + space
55
56 # the enter key is KP_Enter instead of Return (thanks, rebhana!)
57 # some applications don't accept KP_Enter in place of Return, hence:
58
59 "xvkbd -xsendevent -text '\r'"
60    Shift + KP_Enter
61
62 # debernardis and rebhana suggest TAB and Esc
63
64 "xvkbd -xsendevent -text '\t'"
65   Shift+Mod5 + Right
66
67 "xvkbd -xsendevent -text '\e'"
68   Shift+Mod5 + Left
69
70 # F1-F12 mapped to Shift+Fn + keys from upper row (thanks, rebhana):
71
72 "xvkbd -xsendevent -text "\[F1]""
73  m:0x81 + c:24
74
75 "xvkbd -xsendevent -text "\[F2]""
76  m:0x81 + c:25
77
78 "xvkbd -xsendevent -text "\[F3]""
79  m:0x81 + c:26
80
81 "xvkbd -xsendevent -text "\[F4]""
82  m:0x81 + c:27
83
84 "xvkbd -xsendevent -text "\[F5]""
85  m:0x81 + c:28
86
87 "xvkbd -xsendevent -text "\[F6]""
88  m:0x81 + c:29
89
90 "xvkbd -xsendevent -text "\[F7]""
91  m:0x81 + c:30
92
93 "xvkbd -xsendevent -text "\[F8]""
94  m:0x81 + c:31
95
96 "xvkbd -xsendevent -text "\[F9]""
97  m:0x81 + c:32
98
99 "xvkbd -xsendevent -text "\[F10]""
100  m:0x81 + c:33
101
102 "xvkbd -xsendevent -text "\[F11]""
103  m:0x81 + c:59
104
105 "xvkbd -xsendevent -text "\[F12]""
106  m:0x81 + c:22
107
108 # Examples of commands:
109
110 # specify a mouse button
111 #"xterm"
112 #  control + b:2
113
114 ##################################
115 # End of xbindkeys configuration #
116 ##################################