Browse Source

Use pipes.sh as locker fallback

master
Arun Prakash Jana 5 years ago
parent
commit
4a98d8db50
No known key found for this signature in database GPG Key ID: A75979F35C080412
2 changed files with 6 additions and 2 deletions
  1. +1
    -1
      README.md
  2. +5
    -1
      src/nnn.c

+ 1
- 1
README.md View File

@@ -135,7 +135,7 @@ The following table is a complete list. Some of the utilities may be installed b
| mediainfo / exiftool | multimedia file details |
| trash-cli | trash files (default action: delete) |
| sshfs, fusermount(3) | mount, unmount remote over SSHFS |
| vlock (Linux), bashlock (macOS), lock(1) (BSD) | terminal locker |
| vlock (Linux), bashlock (macOS), lock(1) (BSD) | terminal locker (fallback: [pipes.sh](https://github.com/pipeseroni/pipes.sh)) |
| advcpmv (Linux) ([integration](https://github.com/jarun/nnn/wiki/hacking-nnn#show-cp-mv-progress)) | copy, move progress |
| `$VISUAL` (else `$EDITOR`), `$PAGER` (less, most), `$SHELL` | fallback vi, less, sh |



+ 5
- 1
src/nnn.c View File

@@ -4252,7 +4252,11 @@ nochange:
/* Locker */
if (idletimeout && idle == idletimeout) {
idle = 0;
spawn(utils[LOCKER], NULL, NULL, NULL, F_NORMAL);
tmp = utils[LOCKER];
if (!getutil(tmp))
tmp = "pipes.sh";

spawn(tmp, NULL, NULL, NULL, F_NORMAL);
if (ndents)
copycurname();
goto begin;


Loading…
Cancel
Save