diff options
author | sin <sin@2f30.org> | 2015-11-03 17:48:39 +0000 |
---|---|---|
committer | sin <sin@2f30.org> | 2015-11-03 17:49:07 +0000 |
commit | 62736bf43a528f472dd01c87fa1d4ac247e07043 (patch) | |
tree | f3dc4e07b47fa78d7303d0966dadf8e3c556591f | |
parent | 1e18b85e56d98ca2daeb7adc587c28f5d653a01f (diff) | |
download | nnn-62736bf43a528f472dd01c87fa1d4ac247e07043.tar.gz |
Ignore SIGINT to allow returning back to noice when we kill the screensaver
Use 'q' to quit.
-rw-r--r-- | noice.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -918,6 +918,8 @@ main(int argc, char *argv[]) ipath = "/"; } + signal(SIGINT, SIG_IGN); + /* Test initial path */ if (canopendir(ipath) == 0) printerr(1, ipath); |