]> Sergey Matveev's repositories - nnn.git/commitdiff
Plugin cleanup 2: one-liners with paged output
authorArun Prakash Jana <engineerarun@gmail.com>
Sun, 6 Jun 2021 08:26:09 +0000 (13:56 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Sun, 6 Jun 2021 08:26:09 +0000 (13:56 +0530)
- remove `mediainf`
- remove `uidgid`
- remove `hexview`
- remove `pdfview`

plugins/README.md
plugins/hexview [deleted file]
plugins/mediainf [deleted file]
plugins/pdfview [deleted file]
plugins/uidgid [deleted file]

index 8dbbbe1ac701891c10d9da6d6d026d58c423a0cc..5566f0e42a9ca86dfc6269978b6c6990c298d5bd 100644 (file)
@@ -33,14 +33,12 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
 | [getplugs](getplugs) | Update plugins to installed `nnn` version | sh | curl |
 | [gpg\*](gpg\*) | Encrypt/decrypt files using GPG [✓] | sh | gpg |
 | [gutenread](gutenread) | Browse, download, read from Project Gutenberg | sh | curl, unzip, w3m<br>[epr](https://github.com/wustho/epr) (optional) |
-| [hexview](hexview) | View a file in hex in `$PAGER` | sh | [hx](https://github.com/krpors/hx)/xxd |
 | [imgresize](imgresize) | Resize images in dir to screen resolution | sh | [imgp](https://github.com/jarun/imgp) |
 | [imgur](imgur) | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) | bash | - |
 | [imgview](imgview) | View (thumbnail)images, set wallpaper, [rename](https://github.com/jarun/nnn/wiki/Basic-use-cases#browse-rename-images) and [more](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts)| sh | [imv](https://github.com/eXeC64/imv)/[sxiv](https://github.com/muennich/sxiv)/[viu](https://github.com/atanunq/viu)/<br>[ucollage](https://github.com/ckardaris/ucollage)/[catimg](https://github.com/posva/catimg)/[lsix](https://github.com/hackerb9/lsix)|
 | [ipinfo](ipinfo) | Fetch external IP address and whois information | sh | curl, whois |
 | [kdeconnect](kdeconnect) | Send selected files to an Android device [✓] | sh | kdeconnect-cli |
 | [launch](launch) | GUI application launcher | sh | fzf |
-| [mediainf](mediainf) | Show media information | sh | mediainfo |
 | [mimelist](mimelist) | List files by mime in subtree | sh | - |
 | [moclyrics](moclyrics) | Show lyrics of the track playing in moc | sh | [ddgr](https://github.com/jarun/ddgr), [moc](http://moc.daper.net/) |
 | [mocq](mocq) | Queue/play selection/dir/file in moc [✓] | sh | [moc](http://moc.daper.net/) |
@@ -52,7 +50,6 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
 | [oldbigfile](oldbigfile) | List large files by access time | sh | find, sort |
 | [organize](organize) | Auto-organize files in directories by file type [✓] | sh | file |
 | [pdfread](pdfread) | Read a PDF or text file aloud | sh | pdftotext, mpv,<br>pico2wave |
-| [pdfview](pdfview) | View PDF file in `$PAGER` | sh | pdftotext/<br>mupdf-tools |
 | [preview-tabbed](preview-tabbed) | Preview files with Tabbed/xembed | bash | _see in-file docs_ |
 | [preview-tui](preview-tui) | Preview with Tmux/kitty/[QuickLook](https://github.com/QL-Win/QuickLook)/xterm/`$TERMINAL` | sh | _see in-file docs_ |
 | [pskill](pskill) | Fuzzy list by name and kill process or zombie | sh | fzf, ps, sudo/doas |
@@ -62,7 +59,6 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
 | [splitjoin](splitjoin) | Split file or join selection [✓] | sh | split, cat |
 | [suedit](suedit) | Edit file using superuser permissions | sh | sudoedit/sudo/doas |
 | [togglex](togglex) | Toggle executable mode for selection [✓] | sh | chmod |
-| [uidgid](uidgid) | List user and group of all files in dir | sh | ls, less |
 | [umounttree](umounttree) | Unmount a remote mountpoint from within | sh | fusermount |
 | [upload](upload) | Upload to Firefox Send or ix.io (text) or file.io (bin) | sh | [ffsend](https://github.com/timvisee/ffsend), curl, jq, tr |
 | [wallpaper](wall) | Set wallpaper or change colorscheme | sh | nitrogen/pywal |
@@ -311,6 +307,60 @@ There are many plugins provided by `nnn` which can be used as examples. Here are
         eval "rg -l0 --hidden -S $pattern" > "$NNN_PIPE"
     fi
     ```
+- Quick scripts for paged output
+    ```sh
+    #!/usr/bin/env sh
+
+    # Show media information for hovered file
+    # Save as file mediainf
+    # m:-_mediainf
+
+    mediainfo "$1" | eval "$PAGER"
+    # exiftool "$1" | $PAGER
+    -------------------------------------------------
+    #!/usr/bin/env sh
+
+    # Show tree output with permissions and file size
+    # Save as file treeplug
+    # t:-_treeplug
+
+    tree -ps | $EDITOR -
+    -------------------------------------------------
+    #!/usr/bin/env sh
+
+    # List files with UID/GID
+    # Save as file uidgid
+    # u:-_uidgid
+
+    ls -lah --group-directories-first | less
+    -------------------------------------------------
+    #!/usr/bin/env sh
+
+    # Show hovered file data in hex
+    # Save as file hexview
+    # x:-_hexview
+
+    if [ -f "$1" ]; then
+        xxd "$1" | $PAGER
+    fi
+    -------------------------------------------------
+    #!/usr/bin/env sh
+
+    # Show hovered PDF text
+    # Save as file pdftxt
+    # p:-_pdftxt
+
+    if [ -f "$1" ] && [ "$(head -c 4 "$1")" = "%PDF" ]; then
+        pdftotext -nopgbrk -layout "$1" - | sed 's/\xe2\x80\x8b//g' | $PAGER
+
+        # Convert using mutool
+        # file=`basename "$1"`
+        # txt=/tmp/"$file".txt
+        # mutool convert -o "$txt" "$1"
+        # eval $PAGER $txt
+        # rm "$txt
+    fi
+    ```
 
 ## Contributing plugins
 
diff --git a/plugins/hexview b/plugins/hexview
deleted file mode 100755 (executable)
index cb1006d..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env sh
-
-# Description: View a file in hex
-#
-# Dependencies: hx (https://github.com/krpors/hx)/xxd and $PAGER
-#
-# Shell: POSIX compliant
-# Author: Arun Prakash Jana
-
-if [ -n "$1" ]; then
-    if type hx >/dev/null 2>&1; then
-        hx "$1"
-    else
-        xxd "$1" | $PAGER
-    fi
-fi
diff --git a/plugins/mediainf b/plugins/mediainf
deleted file mode 100755 (executable)
index 22ae824..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env sh
-
-# Description: Show media information of a file in pager
-#
-# Dependencies: mediainfo
-#
-# Shell: POSIX compliant
-# Author: Arun Prakash Jana
-
-if [ -n "$1" ] && [ -f "$1" ]; then
-    mediainfo "$1" | $PAGER
-    # exiftool "$1" | $PAGER
-fi
diff --git a/plugins/pdfview b/plugins/pdfview
deleted file mode 100755 (executable)
index e21b348..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env sh
-
-# Description: View a PDF file in pager
-#
-# Notes:
-#   - $PAGER must be 'less -R' or 'most'
-#   - To use mutool, uncomment the relevant lines and comment the pdftotext line
-#
-# Shell: POSIX compliant
-# Author: Arun Prakash Jana
-
-if [ -n "$1" ]; then
-    if [ "$(head -c 4 "$1")" = "%PDF" ]; then
-        # Convert using pdftotext
-        pdftotext -nopgbrk -layout "$1" - | sed 's/\xe2\x80\x8b//g' | $PAGER
-
-        # Convert using mutool
-        # file=`basename "$1"`
-        # txt=/tmp/"$file".txt
-        # mutool convert -o "$txt" "$1"
-        # eval $PAGER $txt
-        # rm "$txt"
-    fi
-fi
diff --git a/plugins/uidgid b/plugins/uidgid
deleted file mode 100755 (executable)
index 261ac60..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env sh
-
-# Description: list uid and gid of files
-#
-# Note: To list UID and GID of all users in a pretty format, run:
-#           cut -d':' -f1,3,4,5 < /etc/passwd | column -ts ":"
-#
-# Shell: POSIX compliant
-# Authors: Arun Prakash Jana, superDuperCyberTechno
-
-# shellcheck disable=SC2012
-ls -lah --group-directories-first | less