summaryrefslogtreecommitdiff
path: root/openbox/actions/breakchroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/actions/breakchroot.c')
-rw-r--r--openbox/actions/breakchroot.c21
1 files changed, 21 insertions, 0 deletions
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;
+}