From bb0fd965c50289c02619113f113927294fa5be23 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 22 Jun 2007 05:02:25 +0000 Subject: add breakchroot action --- openbox/actions/breakchroot.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 openbox/actions/breakchroot.c (limited to 'openbox/actions/breakchroot.c') diff --git a/openbox/actions/breakchroot.c b/openbox/actions/breakchroot.c new file mode 100644 index 00000000..bfdbf16c --- /dev/null +++ b/openbox/actions/breakchroot.c @@ -0,0 +1,21 @@ +#include "openbox/actions.h" +#include "openbox/keyboard.h" + +static gboolean run_func(ObActionsData *data, gpointer options); + +void action_breakchroot_startup() +{ + actions_register("BreakChroot", + NULL, NULL, + run_func, + NULL, NULL); +} + +/* Always return FALSE because its not interactive */ +static gboolean run_func(ObActionsData *data, gpointer options) +{ + /* break out of one chroot */ + keyboard_reset_chains(1); + + return FALSE; +} -- cgit v1.2.3