diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2007-07-14 15:25:41 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2007-07-14 15:25:41 +0200 |
| commit | e2da61b2e7cbaace1f8799ec1fcd506c281892bf (patch) | |
| tree | d3134f2e2030ade13f9a548e7751ce3e46112ee8 /openbox/actions/focustobottom.c | |
| parent | 8ad51aef1e08623fb97437994d75366a3018e493 (diff) | |
| parent | 27a0f0f4c99bab0ceaa496f14c7498b230fcab25 (diff) | |
Merge branch 'master' of git://orodu.net/openbox
Diffstat (limited to 'openbox/actions/focustobottom.c')
| -rw-r--r-- | openbox/actions/focustobottom.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/openbox/actions/focustobottom.c b/openbox/actions/focustobottom.c new file mode 100644 index 00000000..74d48e33 --- /dev/null +++ b/openbox/actions/focustobottom.c @@ -0,0 +1,17 @@ +#include "openbox/actions.h" +#include "openbox/focus.h" + +static gboolean run_func(ObActionsData *data, gpointer options); + +void action_focustobottom_startup() +{ + actions_register("FocusToBottom", NULL, NULL, run_func, NULL, NULL); +} + +/* Always return FALSE because its not interactive */ +static gboolean run_func(ObActionsData *data, gpointer options) +{ + if (data->client) + focus_order_to_bottom(data->client); + return FALSE; +} |
