aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-08-21 12:04:10 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-11-01 10:04:03 (GMT)
commit3ab77bde5d4d5a9b3eb5cbb11c0a03bf17ad0e8d (patch)
tree09ca4afa9074d1af2bab62ced396c2c996f12d38
parentdbbd0d16f92dff29280ead24f274c332192bd2a5 (diff)
downloadfluxbox_pavel-3ab77bde5d4d5a9b3eb5cbb11c0a03bf17ad0e8d.zip
fluxbox_pavel-3ab77bde5d4d5a9b3eb5cbb11c0a03bf17ad0e8d.tar.bz2
Documentation: update fluxbox-keys for lua
-rw-r--r--doc/asciidoc/fluxbox-keys.txt89
1 files changed, 50 insertions, 39 deletions
diff --git a/doc/asciidoc/fluxbox-keys.txt b/doc/asciidoc/fluxbox-keys.txt
index 2679bc0..5ede2a1 100644
--- a/doc/asciidoc/fluxbox-keys.txt
+++ b/doc/asciidoc/fluxbox-keys.txt
@@ -20,29 +20,41 @@ Variable parameters are shown in emphasis: 'argument'
20 20
21Optional parameters are shown in square brackets: ['argument'] 21Optional parameters are shown in square brackets: ['argument']
22 22
23All other characters shown are required verbatim. Whitespace is required 23Other characters shown are required verbatim. Exceptions to these rules are
24where shown, but it is fine to add more whitespace. 24mentioned when appropriate.
25 25
26DESCRIPTION 26DESCRIPTION
27----------- 27-----------
28The keys file defines the keyboard shortcuts for 'fluxbox(1)'. 28The keys file defines the keyboard shortcuts for 'fluxbox(1)'.
29 29
30You can customize fluxbox's key handling through the ~/.fluxbox/keys file. The 30You can customize fluxbox's key handling through the ~/.fluxbox/keys file. The
31file consists of lines of the basic format: 31file consists of entries of the basic format (the outer set of square brackets
32is verbatim):
32 33
33*['modifiers'] 'key' :'command' ['arguments' '...']* 34'keymode'*["*['modifiers'] 'key'*"]* = 'action'
34 35
35The space between the 'key' and the *:* before the 'command' is mandatory. 36For description of 'keymode' see the KEYMODES section.
36 37
37All modifiers and commands are case-insensitive. Some command arguments 38The string in square brackets specifies the key combination to which an action
38(especially those that will be passed to the shell) are case-sensitive. Some 39is bound. It consists of key names optionally preceded by modifiers. Keys and
40modifiers are separated by spaces. Modifiers are case-insensitive, while some
39key names are case-sensitive. 41key names are case-sensitive.
40 42
41Lines beginning with a '#' or '!' are considered comments and are unread by 43'action' can either be a lua funcion or a string representing a fluxbox command.
42fluxbox. 44Lua functions can for example be used to change values of fluxbox resources (see
45*fluxbox(1)* for a description of resources) or to add further keybindings.
46Fluxbox commands are described in the COMMANDS section.
43 47
44You will need to ``reload'' fluxbox after editing the keys file so it picks up 48To remove a binding for a specific key combination use *nil* as 'action'. To
45your change. 49remove all keybindings from a keymode, use the syntax:
50
51'keymode'*:clear()*
52
53Standard lua comments are used: everything from *--* to the end of the line is
54ignored. Block comments are enclosed in *--[[* and *]]*.
55
56Changes to this file are automatically picked up by fluxbox so there is no need
57to restart or reconfigure. Fluxbox will never overwrite this file.
46 58
47MODIFIERS 59MODIFIERS
48--------- 60---------
@@ -125,28 +137,37 @@ CHAINING
125Key bindings can be chained in a fashion similar to Emacs key bindings using the 137Key bindings can be chained in a fashion similar to Emacs key bindings using the
126syntax: 138syntax:
127 139
128'modifiers-1' 'key-1' 'modifiers-2' 'key-2' :'command' ['arguments ...']* 140'keymode'*["*['modifiers-1'] 'key-1' ['modifiers-2'] 'key-2'... *"]* = 'action'
129 141
130To abort a chained command part-way through typing it, press the <ESC> key. 142To abort a chained command part-way through typing it, press the <ESC> key.
131 143
132.To Bind CTRL+C CTRL+X (Which means, press CTRL+C then CTRL+X) to quit fluxbox 144.To Bind CTRL+C CTRL+X (Which means, press CTRL+C then CTRL+X) to quit fluxbox
133........ 145........
134Control c Control x :Quit 146default_keymode["Control c Control x"] = "Quit"
135........ 147........
136 148
137KEYMODES 149KEYMODES
138-------- 150--------
139A specific set of key mappings can be activated and de-activated on-the-fly 151A specific set of key mappings can be activated and de-activated on-the-fly
140using what are called keymodes. The syntax to define a mapping in a keymode 152using what are called keymodes. Fluxbox provides a default keymode called
141is: 153*default_keymode*. To create a new keymode use the syntax:
154
155'keymode' *= newKeymode()*
142 156
143*'keymode': 'modifiers' 'key' :'command' ['arguments' '...']* 157Where 'keymode' is any legal lua variable name. If you want to activate this
158keymode when a certain key combination is pressed, use the syntax:
144 159
145Where 'keymode' is any alpha-numeric string name. 160'other_keymode'*["*'key combination'*"] = function()* 'keymode'*:activate() end*
146 161
147When this keymode is activated (see the *KeyMode* command below), all bindings 162When this keymode is activated, all bindings
148prefaced by that keymode name become active (and all other keybindings will be 163prefaced by that keymode name become active (and all other keybindings will be
149deactivated) until the keymode changes again. 164deactivated) until the keymode changes again. Do not forget to add a binding
165which will reactivate the old keymode if you want to be able to return to it.
166
167If you do not want to type *default_keymode* for every binding, you can create
168an alias for it using the syntax:
169
170'x' *= default_keymode*
150 171
151COMMANDS 172COMMANDS
152-------- 173--------
@@ -543,16 +564,6 @@ These commands have special meanings or behaviors.
543 Alternates between the commands. On the first press of the bound 564 Alternates between the commands. On the first press of the bound
544 key, runs 'command1'. On the next press, runs 'command2'. 565 key, runs 'command1'. On the next press, runs 'command2'.
545 566
546*BindKey* 'keybinding'::
547 Adds the given 'keybinding' (which must be a valid key binding as
548 defined in the DESCRIPTION section above) to your keys file.
549
550*KeyMode* 'keymode' ['return-keybinding']::
551 Activates the named 'keymode' (or, all key binding lines prefaced
552 with the same 'keymode':) and deactivates all others until the
553 'return-keybinding' (by default *Escape*) is pressed. The default
554 keymode is named 'default'.
555
556*ForEach* {'command'} [{'condition'}] | *Map* {'command'} [{'condition'}]:: 567*ForEach* {'command'} [{'condition'}] | *Map* {'command'} [{'condition'}]::
557 Runs the given 'command' (normally one from the *Window Commands* 568 Runs the given 'command' (normally one from the *Window Commands*
558 section above) on each window. If you specify a 'condition' (See 569 section above) on each window. If you specify a 'condition' (See
@@ -610,7 +621,7 @@ include::client-patterns.txt[]
610 621
611FILES 622FILES
612----- 623-----
613*~/.fluxbox/keys*:: 624*~/.fluxbox/keys.lua*::
614 This is the default location for the keybinding definitions. 625 This is the default location for the keybinding definitions.
615*/usr/X11R6/include/X11/keysymdef.h*:: 626*/usr/X11R6/include/X11/keysymdef.h*::
616 X key names are in this file. 627 X key names are in this file.
@@ -640,18 +651,18 @@ Here are some interesting and/or useful examples you can do with your keys
640file. 651file.
641 652
642.................. 653..................
643# Mod4+drag moves a window 654-- Mod4+drag moves a window
644OnWindow Mod4 Mouse1 :StartMoving 655default_keymode["OnWindow Mod4 Mouse1"] = "StartMoving"
645 656
646# If any xterm windows are open, cycle through them. If none are open, open 657-- If any xterm windows are open, cycle through them. If none are open, open
647# one: 658-- one:
648Mod4 t :If {Some Matches (xterm)} {NextWindow (xterm)} {Exec xterm} 659default_keymode["Mod4 t"] = "If {Some Matches (xterm)} {NextWindow (xterm)} {Exec xterm}"
649 660
650# Set a different wallpaper on every workspace: 661-- Set a different wallpaper on every workspace:
651ChangeWorkspace :Exec fbsetbg ~/.fluxbox/bg$(xprop -root _NET_CURRENT_DESKTOP | awk '{print $3}').png 662default_keymode["ChangeWorkspace"] = "Exec fbsetbg ~/.fluxbox/bg$(xprop -root _NET_CURRENT_DESKTOP | awk '{print $3}').png"
652 663
653# Focusses the next window with it's xproperty 'PROP' set to 'foo' 664-- Focusses the next window with it's xproperty 'PROP' set to 'foo'
654Mod4 p Mod4 Tab :NextWindow (@PROP=foo) 665default_keymode["Mod4 p Mod4 Tab"] = "NextWindow (@PROP=foo)"
655.................. 666..................
656 667
657 668