diff options
Diffstat (limited to 'doc/asciidoc/fluxbox.txt')
-rw-r--r-- | doc/asciidoc/fluxbox.txt | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/doc/asciidoc/fluxbox.txt b/doc/asciidoc/fluxbox.txt index d530584..657e09c 100644 --- a/doc/asciidoc/fluxbox.txt +++ b/doc/asciidoc/fluxbox.txt | |||
@@ -1054,6 +1054,17 @@ In the example below, Mod1 is the 'ALT' key on the PC keyboard and Mod4 is one | |||
1054 | of the three extra keys on a pc104 branded with a familiar company logo. Lines | 1054 | of the three extra keys on a pc104 branded with a familiar company logo. Lines |
1055 | beginning with a '#' or '!' are considered comments and unread by fluxbox. | 1055 | beginning with a '#' or '!' are considered comments and unread by fluxbox. |
1056 | 1056 | ||
1057 | You can get a list of possible modifiers by calling 'xmodmap -pm'. This also | ||
1058 | shows you to which keys the modifiers are mapped. Additionally there is the | ||
1059 | 'OnDesktop' modifier. To find valid keynames check the following files: | ||
1060 | |||
1061 | /usr/X11R6/include/X11/keysymdef.h | ||
1062 | /usr/X11R6/lib/X11/XKeysymDB | ||
1063 | |||
1064 | |||
1065 | Furthermore you can use Mouse1, Mouse2, etc to define actions for your mouse | ||
1066 | buttons. | ||
1067 | |||
1057 | ............................ | 1068 | ............................ |
1058 | # fluxbox keys file. | 1069 | # fluxbox keys file. |
1059 | Mod1 Tab :NextWindow | 1070 | Mod1 Tab :NextWindow |
@@ -1134,6 +1145,7 @@ Currently Focused Window Commands | |||
1134 | - MoveTabLeft | 1145 | - MoveTabLeft |
1135 | - MoveTabRight | 1146 | - MoveTabRight |
1136 | - DetachClient | 1147 | - DetachClient |
1148 | - SetAlpha [[+-]<int> [[+-]<int>]] | ||
1137 | 1149 | ||
1138 | Workspace Commands | 1150 | Workspace Commands |
1139 | ~~~~~~~~~~~~~~~~~~ | 1151 | ~~~~~~~~~~~~~~~~~~ |
@@ -1156,6 +1168,8 @@ Workspace Commands | |||
1156 | - RootMenu | 1168 | - RootMenu |
1157 | - WorkspaceMenu | 1169 | - WorkspaceMenu |
1158 | - WindowMenu | 1170 | - WindowMenu |
1171 | - HideMenu | ||
1172 | - CustomMenu <path_to_file> | ||
1159 | - SetWorkspaceName <name> | 1173 | - SetWorkspaceName <name> |
1160 | 1174 | ||
1161 | Special Commands | 1175 | Special Commands |
@@ -1170,6 +1184,14 @@ Special Commands | |||
1170 | 1184 | ||
1171 | Couple of things | 1185 | Couple of things |
1172 | ~~~~~~~~~~~~~~~~ | 1186 | ~~~~~~~~~~~~~~~~ |
1187 | - Exec: | ||
1188 | fluxbox utilizes /bin/sh to start the commands. This means, that | ||
1189 | you can use environment variables to do some tricks here. E.g: | ||
1190 | :Exec $XTERM | ||
1191 | This would fire up the term of your choice, if you set XTERM to | ||
1192 | something usefull _before_ fluxbox starts, e.g. in the .fluxbox/startup | ||
1193 | file. | ||
1194 | |||
1173 | - TakeToWorkspace: | 1195 | - TakeToWorkspace: |
1174 | Will send you along with the window to the selected workspace. | 1196 | Will send you along with the window to the selected workspace. |
1175 | SendToWorkspace just sends the window. | 1197 | SendToWorkspace just sends the window. |
@@ -1210,7 +1232,7 @@ Couple of things | |||
1210 | requested setting. So if you have a window that is 100 pixels wide, you could | 1232 | requested setting. So if you have a window that is 100 pixels wide, you could |
1211 | set | 1233 | set |
1212 | 1234 | ||
1213 | ........................... | 1235 | .......................... |
1214 | Mod1 r :ResizeHorizontal 10 | 1236 | Mod1 r :ResizeHorizontal 10 |
1215 | ............................ | 1237 | ............................ |
1216 | 1238 | ||
@@ -1244,6 +1266,15 @@ Mod1 t :ToggleCmd {command1} {command2} | |||
1244 | 1266 | ||
1245 | alternates between the given commands each time you press Mod1 + t. | 1267 | alternates between the given commands each time you press Mod1 + t. |
1246 | 1268 | ||
1269 | - SetAlpha [[+-]<int> [[+-]<int>]]: | ||
1270 | Works on the currently focussed window. Given | ||
1271 | * no arguments: reset to default alpha settings | ||
1272 | * one argument: changes both focused and unfocused alpha settings | ||
1273 | * two arguments: first value becomes the focused alpha, second becomes | ||
1274 | the unfocused alpha value. | ||
1275 | E.g: SetAlpha 127 +5 will set the focused alpha to 127 and increment the | ||
1276 | unfocused alpha by 5 (until it reaches 255) | ||
1277 | |||
1247 | LAYERS | 1278 | LAYERS |
1248 | ------ | 1279 | ------ |
1249 | Layers affect the way that windows will overlap each other on the screen. | 1280 | Layers affect the way that windows will overlap each other on the screen. |
@@ -1483,6 +1514,10 @@ curly brackets: | |||
1483 | when a window is closed. Set this option if you want previous settings to | 1514 | when a window is closed. Set this option if you want previous settings to |
1484 | be saved when the window is closed. | 1515 | be saved when the window is closed. |
1485 | 1516 | ||
1517 | - [Alpha] {int [int]} | ||
1518 | Where numbers represent focused and unfocused transparency, | ||
1519 | respectively. One number only will be used for both. | ||
1520 | |||
1486 | The apps file also allows you to specify applications that should be started | 1521 | The apps file also allows you to specify applications that should be started |
1487 | on fluxbox startup using [startup] (options) {command} lines. Currently, the | 1522 | on fluxbox startup using [startup] (options) {command} lines. Currently, the |
1488 | only valid option is (screen=NN), where NN is the screen number on which the | 1523 | only valid option is (screen=NN), where NN is the screen number on which the |