From ce26445b6f720fb8261e18b7fbda08dfd153e5e3 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 24 Mar 2014 13:22:23 -0400 Subject: [PATCH] tui: allow ^Z to suspend the app This way if we end up with bugs that make it otherwise impossible to kill nmtui, you can at least ^Z and then kill it from the command line. --- tui/newt/nmt-newt-utils.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tui/newt/nmt-newt-utils.c b/tui/newt/nmt-newt-utils.c index 10e8484927..68d8c449e5 100644 --- a/tui/newt/nmt-newt-utils.c +++ b/tui/newt/nmt-newt-utils.c @@ -110,6 +110,14 @@ nmt_newt_basic_g_log_handler (const char *log_domain, newtResume (); } +static void +nmt_newt_suspend_callback (gpointer user_data) +{ + newtSuspend (); + kill (getpid (), SIGTSTP); + newtResume (); +} + /** * nmt_newt_init: * @@ -132,6 +140,8 @@ nmt_newt_init (void) g_log_set_default_handler (nmt_newt_dialog_g_log_handler, NULL); else g_log_set_default_handler (nmt_newt_basic_g_log_handler, NULL); + + newtSetSuspendCallback (nmt_newt_suspend_callback, NULL); } /**