aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/README.md2
-rwxr-xr-xplugins/nuke (renamed from plugins/nplay)12
2 files changed, 7 insertions, 7 deletions
diff --git a/plugins/README.md b/plugins/README.md
index ac89167..094238b 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -38,7 +38,7 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
| mocplay | Append (and/or play) selection/dir/file in moc | sh | [moc](http://moc.daper.net/) |
| nmount | Toggle mount status of a device as normal user | sh | pmount, udisks2 |
| notes | Open a quick notes file/dir in `$EDITOR` | sh | - |
-| nplay | Sample file opener (CLI-only by default) | sh | various |
+| nuke | Sample file opener (CLI-only by default) | sh | various |
| oldbigfile | List large files by access time | sh | find, sort |
| organize | Auto-organize files in directories by file type | sh | file |
| pastebin | Paste contents of a text a file ix.io | sh | - |
diff --git a/plugins/nplay b/plugins/nuke
index 3ce4692..1109894 100755
--- a/plugins/nplay
+++ b/plugins/nuke
@@ -1,18 +1,18 @@
#!/usr/bin/env sh
# #############################################################################
-# nplay: a sample script to play files in different apps by file type and mime
+# nuke: a sample script to play files in different apps by file type and mime
# shell: POSIX compliant
-# usage: nplay filepath
+# usage: nuke filepath
#
# nnn integration:
# 1. Export the required config:
-# export NNN_OPENER=/absolute/path/to/nplay
-# # Otherwise, if nplay is in $PATH
-# # export NNN_OPENER=nplay
+# export NNN_OPENER=/absolute/path/to/nuke
+# # Otherwise, if nuke is in $PATH
+# # export NNN_OPENER=nuke
# 2. Run nnn with the program option to indicate a CLI opener
# nnn -c
-# 3. nplay can use nnn plugins (e.g. mocplay is used for audio), $PATH is updated.
+# 3. nuke can use nnn plugins (e.g. mocplay is used for audio), $PATH is updated.
#
# details:
# Inspired by ranger's scope.sh, modified for usage with nnn.