diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/keys | 29 |
1 files changed, 24 insertions, 5 deletions
@@ -7,20 +7,26 @@ OnDesktop Mouse3 :RootMenu | |||
7 | OnDesktop Mouse4 :PrevWorkspace | 7 | OnDesktop Mouse4 :PrevWorkspace |
8 | OnDesktop Mouse5 :NextWorkspace | 8 | OnDesktop Mouse5 :NextWorkspace |
9 | 9 | ||
10 | # scroll on the toolbar to change workspaces | 10 | # scroll on the toolbar to change current window |
11 | OnToolbar Mouse4 :PrevWorkspace | 11 | OnToolbar Mouse4 :PrevWindow {static groups} (iconhidden=no) |
12 | OnToolbar Mouse5 :NextWorkspace | 12 | OnToolbar Mouse5 :NextWindow {static groups} (iconhidden=no) |
13 | 13 | ||
14 | # alt + left/right click to move/resize a window | 14 | # alt + left/right click to move/resize a window |
15 | OnWindow Mod1 Mouse1 :MacroCmd {Raise} {Focus} {StartMoving} | 15 | OnWindow Mod1 Mouse1 :MacroCmd {Raise} {Focus} {StartMoving} |
16 | OnWindow Mod1 Mouse3 :MacroCmd {Raise} {Focus} {StartResizing NearestCorner} | 16 | OnWindow Mod1 Mouse3 :MacroCmd {Raise} {Focus} {StartResizing NearestCorner} |
17 | 17 | ||
18 | # middle click a window's titlebar and drag to attach windows | 18 | # alt + middle click to lower the window |
19 | OnTitlebar Mouse2 :StartTabbing | 19 | OnWindow Mod1 Mouse2 :Lower |
20 | |||
21 | # control-click a window's titlebar and drag to attach windows | ||
22 | OnTitlebar Control Mouse1 :StartTabbing | ||
20 | 23 | ||
21 | # double click on the titlebar to shade | 24 | # double click on the titlebar to shade |
22 | OnTitlebar Double Mouse1 :Shade | 25 | OnTitlebar Double Mouse1 :Shade |
23 | 26 | ||
27 | # middle click on the titlebar to lower | ||
28 | OnTitlebar Mouse2 :Lower | ||
29 | |||
24 | # right click on the titlebar for a menu of options | 30 | # right click on the titlebar for a menu of options |
25 | OnTitlebar Mouse3 :WindowMenu | 31 | OnTitlebar Mouse3 :WindowMenu |
26 | 32 | ||
@@ -57,6 +63,7 @@ Mod1 F2 :Exec fbrun | |||
57 | 63 | ||
58 | # current window commands | 64 | # current window commands |
59 | Mod1 F4 :Close | 65 | Mod1 F4 :Close |
66 | Mod1 F5 :Kill | ||
60 | Mod1 F9 :Minimize | 67 | Mod1 F9 :Minimize |
61 | Mod1 F10 :Maximize | 68 | Mod1 F10 :Maximize |
62 | Mod1 F11 :Fullscreen | 69 | Mod1 F11 :Fullscreen |
@@ -67,6 +74,18 @@ Mod1 space :WindowMenu | |||
67 | # exit fluxbox | 74 | # exit fluxbox |
68 | Control Mod1 Delete :Exit | 75 | Control Mod1 Delete :Exit |
69 | 76 | ||
77 | # change to previous/next workspace | ||
78 | Control Mod1 Left :PrevWorkspace | ||
79 | Control Mod1 Right :NextWorkspace | ||
80 | |||
81 | # send the current window to previous/next workspace | ||
82 | Mod4 Left :SendToPrevWorkspace | ||
83 | Mod4 Right :SendToNextWorkspace | ||
84 | |||
85 | # send the current window and follow it to previous/next workspace | ||
86 | Control Mod4 Left :TakeToPrevWorkspace | ||
87 | Control Mod4 Right :TakeToNextWorkspace | ||
88 | |||
70 | # change to a specific workspace | 89 | # change to a specific workspace |
71 | Control F1 :Workspace 1 | 90 | Control F1 :Workspace 1 |
72 | Control F2 :Workspace 2 | 91 | Control F2 :Workspace 2 |