My build of nnn with minor changes
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

5 年前
5 年前
5 年前
4 年前
5 年前
4 年前
5 年前
5 年前
4 年前
5 年前
5 年前
5 年前
4 年前
5 年前
5 年前
4 年前
5 年前
4 年前
4 年前
4 年前
4 年前
5 年前
5 年前
4 年前
4 年前
4 年前
5 年前
4 年前
4 年前
4 年前
5 年前
4 年前
4 年前
5 年前
5 年前
4 年前
4 年前
4 年前
5 年前
5 年前
5 年前
5 年前
4 年前
4 年前
5 年前
5 年前
5 年前
5 年前
4 年前
5 年前
4 年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <h1 align="center">nnn plugins</h1>
  2. <p align="center"><img src="https://i.imgur.com/SpT0L2W.png" /></p>
  3. <p align="center"><i>read ebooks with plugin gutenread (Android)</i></p>
  4. <p align="center"><img src="https://i.imgur.com/14iPDIq.png" /></p>
  5. <p align="center"><i>image preview with plugin imgthumb</i></p>
  6. ## Introduction
  7. Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or binaries) `nnn` can communicate with and trigger. This mechanism fits perfectly with the fundamental design to keep the core file manager lean and fast, by delegating repetitive (but not necessarily file manager-specific) tasks to the plugins which can be run with custom hotkeys.
  8. `nnn` is _**language-agnostic**_ when it comes to plugins. You can write a plugin in any (scripting) language you are comfortable in!
  9. ## Installing plugins
  10. The following command installs or updates (after backup) all plugins:
  11. ```sh
  12. curl -Ls https://raw.githubusercontent.com/jarun/nnn/master/plugins/getplugs | sh
  13. ```
  14. Plugins are installed to `${XDG_CONFIG_HOME:-$HOME/.config}/nnn/plugins`.
  15. ## List of plugins
  16. | Plugin (a-z) | Description | Lang | Dependencies |
  17. | --- | --- | --- | --- |
  18. | autojump | Navigate to dir/path | sh | autojump |
  19. | boom | Play random music from dir | sh | [moc](http://moc.daper.net/) |
  20. | dups | List non-empty duplicate files in current dir | sh | find, md5sum,<br>sort uniq xargs |
  21. | chksum | Create and verify checksums | sh | md5sum,<br>sha256sum |
  22. | diffs | Diff for selection (limited to 2 for directories) | sh | vimdiff |
  23. | dragdrop | Drag/drop files from/into nnn | sh | [dragon](https://github.com/mwh/dragon) |
  24. | finder | Run custom find command and list | sh | - |
  25. | fzcd | Change to the directory of a fuzzy-selected file/dir | sh | fzf/fzy<br>fd/fdfind/find |
  26. | fzhist | Fuzzy-select a cmd from history, edit in `$EDITOR` and run | sh | fzf/fzy |
  27. | fzopen | Fuzzy find a file in dir subtree and edit or open | sh | fzf/fzy, xdg-open |
  28. | fzz | Change to any directory in the z database with fzf/fzy | sh | fzf/fzy, z |
  29. | getplugs | Update plugins to installed `nnn` version | sh | curl |
  30. | gutenread | Browse, download, read from Project Gutenberg | sh | curl, unzip, w3m<br>[epr](https://github.com/wustho/epr) (optional) |
  31. | hexview | View a file in hex in `$PAGER` | sh | xxd |
  32. | imgresize | Resize images in dir to screen resolution | sh | [imgp](https://github.com/jarun/imgp) |
  33. | imgthumb | View thumbnail of an image or dir of images | sh | [lsix](https://github.com/hackerb9/lsix) |
  34. | imgur | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) | bash | - |
  35. | imgview | Browse images, set wallpaper, copy path ([config](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts)), [rename](https://github.com/jarun/nnn/wiki/Basic-use-cases#browse-rename-images)| sh | sxiv/[viu](https://github.com/atanunq/viu), less|
  36. | ipinfo | Fetch external IP address and whois information | sh | curl, whois |
  37. | kdeconnect | Send selected files to an Android device | sh | kdeconnect-cli |
  38. | launch | GUI application launcher | sh | fzf/fzy |
  39. | mediainf | Show media information | sh | mediainfo |
  40. | mimelist | List files by mime in subtree | sh | fd/find |
  41. | moclyrics | Show lyrics of the track playing in moc | sh | [ddgr](https://github.com/jarun/ddgr), [moc](http://moc.daper.net/) |
  42. | mocplay | Append (and/or play) selection/dir/file in moc | sh | [moc](http://moc.daper.net/) |
  43. | mp3conv | Extract audio from multimedia as mp3 | sh | ffmpeg |
  44. | nbak | Backs up `nnn` config | sh | tar, awk |
  45. | nmount | Toggle mount status of a device as normal user | sh | pmount, udisks2 |
  46. | nuke | Sample file opener (CLI-only by default) | sh | _see in-file docs_ |
  47. | oldbigfile | List large files by access time | sh | find, sort |
  48. | organize | Auto-organize files in directories by file type | sh | file |
  49. | pdfread | Read a PDF or text file aloud | sh | pdftotext, mpv,<br>pico2wave |
  50. | pdfview | View PDF file in `$PAGER` | sh | pdftotext/<br>mupdf-tools |
  51. | picker | Pick files and list one per line (to pipe) | sh | nnn |
  52. | preview-tabbed | `tabbed`/xembed based file previewer | bash | _see in-file docs_ |
  53. | preview-tui | Simple TUI file previewer (needs NNN_FIFO) | sh | tmux/xterm/<br>\$TERMINAL, file, tree |
  54. | pskill | Fuzzy list by name and kill process or zombie | sh | fzf/fzy, ps,<br>sudo/doas |
  55. | renamer | Batch rename selection or files in dir | sh | [qmv](https://www.nongnu.org/renameutils/)/[vidir](https://joeyh.name/code/moreutils/) |
  56. | ringtone | Create a variable bitrate mp3 ringtone from file | sh | date, ffmpeg |
  57. | splitjoin | Split file or join selection | sh | split, cat |
  58. | suedit | Edit file using superuser permissions | sh | sudoedit/sudo/doas |
  59. | treeview | Informative tree output in `$EDITOR` | sh | tree |
  60. | uidgid | List user and group of all files in dir | sh | ls, less |
  61. | upgrade | Upgrade nnn manually on Debian 9 Stretch | sh | curl |
  62. | upload | Paste text to ix.io, upload binary to file.io | sh | curl, jq, tr |
  63. | vidthumb | Show video thumbnails in terminal | sh | [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer),<br>[lsix](https://github.com/hackerb9/lsix) |
  64. | wall | Set wallpaper or change colorscheme | sh | nitrogen/pywal |
  65. | x2sel | Copy `\n`-separated file list from system clipboard to sel | sh | _see in-file docs_ |
  66. ## Invoking a plugin
  67. Press the plugin shortcut (<kbd>;</kbd> or <kbd>^S</kbd>) followed by the assigned key. E.g., with the below config:
  68. ```sh
  69. export NNN_PLUG='f:finder;o:fzopen;p:mocplay;d:diffs;t:nmount;v:imgview'
  70. ```
  71. Plugin `finder` can be run with the keybind <kbd>;f</kbd>, `fzopen` can be run with <kbd>;o</kbd> and so on... The key vs. plugin pairs are shown in the help and config screen.
  72. To select and invoke a plugin from the plugin directory, press <kbd>Enter</kbd> (to _enter_ the plugin dir) after the plugin shortcut.
  73. #### Skip directory refresh after running a plugin
  74. `nnn` refreshes the directory after running a plugin to reflect any changes by the plugin. To disable this (say while running the `mediainfo` plugin on some filtered files), add a `-` before the plugin name:
  75. ```sh
  76. export NNN_PLUG='m:-mediainf'
  77. ```
  78. Now `nnn` will not refresh the directory after running the `mediainfo` plugin.
  79. ## Running commands as plugin
  80. To assign keys to arbitrary non-background, non-shell-interpreted cli commands and invoke like plugins, add `_` (underscore) before the command.
  81. For example:
  82. ```sh
  83. export NNN_PLUG='x:_chmod +x $nnn;g:_git log;s:_smplayer $nnn'
  84. ```
  85. Now <kbd>;x</kbd> can be used to make a file executable, <kbd>;g</kbd> can be used to the git log of a git project directory, <kbd>;s</kbd> can be used to preview a partially downloaded media file.
  86. #### Skip user confirmation after command execution
  87. `nnn` waits for user confirmation (the prompt `Press Enter to continue`) after it executes a command as plugin (unlike plugins which can add a `read` to wait). To skip this, add a `*` after the command. For example:
  88. ```sh
  89. export NNN_PLUG='s:_smplayer $nnn*;n:-_vim /home/vaio/Dropbox/Public/synced_note*'
  90. ```
  91. Now there will be no prompt after <kbd>;s</kbd> and <kbd>;n</kbd>.
  92. #### Run GUI app as plugin
  93. To run a GUI app as plugin, add a `|` after `_`. For example:
  94. ```sh
  95. export NNN_PLUG='m:-_|mousepad $nnn'
  96. ```
  97. Notes:
  98. 1. Use single quotes for `$NNN_PLUG` so `$nnn` is not interpreted
  99. 2. `$nnn` should be the last argument (IF used)
  100. 3. (_Again_) add `_` before the command
  101. 4. To disable directory refresh after running a _command as plugin_, prefix with `-_`
  102. #### Some useful key-command examples
  103. | Key:Command | Description |
  104. |---|---|
  105. | `g:-_git diff` | Show git diff |
  106. | `k:-_fuser -kiv $nnn*` | Interactively kill process(es) using hovered file |
  107. | `l:-_git log` | Show git log |
  108. | `n:-_vi /home/user/Dropbox/dir/note*` | Take quick notes in a synced file/dir of notes |
  109. | `p:-_less -iR $nnn*` | Page through hovered file in less |
  110. | `s:-_\|smplayer -minigui $nnn` | Play hovered media file, even unfinished download |
  111. | `x:_chmod +x $nnn` | Make the hovered file executable |
  112. | `y:-_sync*` | Flush cached writes |
  113. ## Access level of plugins
  114. When `nnn` executes a plugin, it does the following:
  115. - Changes to the directory where the plugin is to be run (`$PWD` pointing to the active directory)
  116. - Passes two arguments to the script:
  117. 1. The hovered file's name.
  118. 2. The working directory (might differ from `$PWD` in case of symlinked paths; non-canonical).
  119. - Sets the environment variable `NNN_PIPE` used to control `nnn` active directory.
  120. Plugins can also read the `.selection` file in the config directory.
  121. ## Create your own plugins
  122. Plugins can be written in any scripting language. However, POSIX-compliant shell scripts runnable in `sh` are preferred.
  123. Drop the plugin in `${XDG_CONFIG_HOME:-$HOME/.config}/nnn/plugins` and make it executable. Optionally add a hotkey in `$NNN_PLUG` for frequent usage.
  124. #### Send data to `nnn`
  125. `nnn` provides a mechanism for plugins to send data to `nnn` to control its active directory or invoke the list mode.
  126. The way to do so is by writing to the pipe pointed by the environment variable `NNN_PIPE`.
  127. The plugin should write a single string in the format `<ctxcode><opcode><data>` without a newline at the end. For example, `1c/etc`.
  128. The `ctxcode` indicates the context to change the active directory of.
  129. | Context code | Meaning |
  130. |:---:| --- |
  131. | `1`-`4` | context number |
  132. | `0` | current context |
  133. | `+` | smart context (next inactive else current) |
  134. The `opcode` indicates the operation type.
  135. | Opcode | Operation |
  136. |:---:| --- |
  137. | `c` | change directory |
  138. | `l` | list files in list mode |
  139. For convenience, we provided a helper script named `.nnn-plugin-helper` and a function named `nnn_cd` to ease this process. `nnn_cd` receives the path to change to as the first argument, and the context as an optional second argument.
  140. If a context is not provided, it is asked for explicitly. To skip this and choose the current context, set the `CUR_CTX` variable in `.nnn-plugin-helper` to `1`.
  141. Usage examples can be found in the Examples section below.
  142. #### Get notified on file hover
  143. If `NNN_FIFO` is set, `nnn` will open it and write every hovered files. This can be used in plugins and external scripts, e.g. to implement file previews.
  144. If a `NNN_FIFO` is set globally, each `nnn` instance will write to it, and a process reading from the pipe will get hovered path from every instance, interleaved.
  145. If you want to prevent this and be sure to have a private pipe to one `nnn` instance, you can unlink (remove) the FIFO file. If you had opened the FIFO before and you have read from it (so that `nnn` have it opened too), you can still read from it while you don't close it. But new `nnn` instances will recreate a new FIFO not linked to the previous one.
  146. Don't forget to fork in the background to avoid blocking `nnn`.
  147. #### Examples
  148. There are many plugins provided by `nnn` which can be used as examples. Here are a few simple selected examples.
  149. - Show the git log of changes to the particular file along with the code for a quick and easy review.
  150. ```sh
  151. #!/usr/bin/env sh
  152. git log -p -- "$1"
  153. ```
  154. - Change to directory in clipboard using helper script
  155. ```sh
  156. #!/usr/bin/env sh
  157. . $(dirname $0)/.nnn-plugin-helper
  158. nnn_cd "$(xsel -ob)"
  159. ```
  160. - Change directory to the location of a link using helper script with specific context (current)
  161. ```sh
  162. #!/usr/bin/env sh
  163. . $(dirname $0)/.nnn-plugin-helper
  164. nnn_cd "$(dirname $(readlink -fn $1))" 0
  165. ```
  166. - Change to arbitrary directory without helper script
  167. ```sh
  168. #!/usr/bin/env sh
  169. printf "cd to: "
  170. read -r dir
  171. printf "%s" "0c$dir" > "$NNN_PIPE"
  172. ```
  173. - Send every hovered file to X selection
  174. ```sh
  175. #!/usr/bin/env sh
  176. if [ -z "$NNN_FIFO" ] ; then
  177. exit 1
  178. fi
  179. while read FILE ; do
  180. if [ -n "$NNN_FIFO" ] ; then
  181. # If you want to remove the FIFO,
  182. # don't do it before first read,
  183. # nnn won't have it opened yet
  184. rm "$NNN_FIFO"
  185. NNN_FIFO=
  186. fi
  187. printf "%s" "$FILE" | xsel
  188. done < "$NNN_FIFO" &
  189. disown
  190. ```
  191. ## Contributing plugins
  192. 1. Add informative sections like _Description_, _Notes_, _Dependencies_, _Shell_, _Author_ etc. in the plugin.
  193. 2. Add an entry in the table above.
  194. 3. Keep non-portable commands (like `notify-send`) commented so users from any other OS/DE aren't surprised.
  195. 4. The plugin file should be executable.
  196. 5. If your plugin stores data, use `${XDG_CACHE_HOME:-$HOME/.cache}/nnn`. Document it _in-file_.