add restart and exit actions
This commit is contained in:
parent
687559cb2d
commit
4a6e98cad8
2 changed files with 16 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
#include "screen.h"
|
||||
#include "action.h"
|
||||
#include "dispatch.h"
|
||||
#include "openbox.h"
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
|
@ -425,3 +426,14 @@ void action_resize(union ActionData *data)
|
|||
client_configure(c, data->resize.corner, c->area.x, c->area.y, w, h,
|
||||
TRUE, data->resize.final);
|
||||
}
|
||||
|
||||
void action_restart(union ActionData *data)
|
||||
{
|
||||
ob_restart_path = data->execute.path;
|
||||
ob_shutdown = ob_restart = TRUE;
|
||||
}
|
||||
|
||||
void action_exit(union ActionData *data)
|
||||
{
|
||||
ob_shutdown = TRUE;
|
||||
}
|
||||
|
|
|
@ -161,5 +161,9 @@ void action_toggle_decorations(union ActionData *data);
|
|||
void action_move(union ActionData *data);
|
||||
/* Resize */
|
||||
void action_resize(union ActionData *data);
|
||||
/* Execute */
|
||||
void action_restart(union ActionData *data);
|
||||
/* Any */
|
||||
void action_exit(union ActionData *data);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue