@@ -5,8 +5,9 @@ | |||||
<a href="https://repology.org/metapackage/nnn"><img src="https://repology.org/badge/tiny-repos/nnn.svg" alt="Availability"></a> | <a href="https://repology.org/metapackage/nnn"><img src="https://repology.org/badge/tiny-repos/nnn.svg" alt="Availability"></a> | ||||
<a href="https://travis-ci.org/jarun/nnn"><img src="https://img.shields.io/travis/jarun/nnn/master.svg?label=travis" alt="Travis Status" /></a> | <a href="https://travis-ci.org/jarun/nnn"><img src="https://img.shields.io/travis/jarun/nnn/master.svg?label=travis" alt="Travis Status" /></a> | ||||
<a href="https://circleci.com/gh/jarun/workflows/nnn"><img src="https://img.shields.io/circleci/project/github/jarun/nnn.svg?label=circleci" alt="CircleCI Status" /></a> | <a href="https://circleci.com/gh/jarun/workflows/nnn"><img src="https://img.shields.io/circleci/project/github/jarun/nnn.svg?label=circleci" alt="CircleCI Status" /></a> | ||||
<a href="https://en.wikipedia.org/wiki/Privacy-invasive_software"><img src="https://img.shields.io/badge/privacy-aware-crimson" alt="Privacy Awareness" /></a> | |||||
<a href="https://en.wikipedia.org/wiki/Privacy-invasive_software"><img src="https://img.shields.io/badge/privacy-✓-crimson" alt="Privacy Awareness" /></a> | |||||
<a href="https://github.com/jarun/nnn/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-BSD%202--Clause-yellow.svg?maxAge=2592000" alt="License" /></a> | <a href="https://github.com/jarun/nnn/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-BSD%202--Clause-yellow.svg?maxAge=2592000" alt="License" /></a> | ||||
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RMLTQ76JSXJ4Q"><img src="https://img.shields.io/badge/PayPal-donate-1eb0fc.svg" alt="Donate via PayPal!" /></a> | |||||
</p> | </p> | ||||
<p align="center"><a href="https://www.youtube.com/watch?v=U2n5aGqou9E"><img src="https://i.imgur.com/MPWpmos.png" /></a></p> | <p align="center"><a href="https://www.youtube.com/watch?v=U2n5aGqou9E"><img src="https://i.imgur.com/MPWpmos.png" /></a></p> | ||||
@@ -22,11 +23,6 @@ It runs smoothly on the Raspberry Pi, Termux [on Android](https://www.youtube.co | |||||
Visit the [Wiki](https://github.com/jarun/nnn/wiki) for concepts, program usage, how-tos and troubleshooting. | Visit the [Wiki](https://github.com/jarun/nnn/wiki) for concepts, program usage, how-tos and troubleshooting. | ||||
*Love smart and efficient utilities? Explore [my repositories](https://github.com/jarun?tab=repositories). Buy me a cup of coffee if they help you.* | |||||
<p align="center"> | |||||
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RMLTQ76JSXJ4Q"><img src="https://img.shields.io/badge/PayPal-donate-1eb0fc.svg" alt="Donate via PayPal!" /></a> | |||||
## Features | ## Features | ||||
- Modes | - Modes | ||||
@@ -14,7 +14,6 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina | |||||
| Plugin (a-z) | Description | Lang | Deps | | | Plugin (a-z) | Description | Lang | Deps | | ||||
| --- | --- | --- | --- | | | --- | --- | --- | --- | | ||||
| autojump | Navigate to dir/path | sh | autojump | | |||||
| boom | Play random music from dir | sh | [moc](http://moc.daper.net/) | | | boom | Play random music from dir | sh | [moc](http://moc.daper.net/) | | ||||
| dups | List non-empty duplicate files in current dir | sh | find, md5sum,<br>sort uniq xargs | | | dups | List non-empty duplicate files in current dir | sh | find, md5sum,<br>sort uniq xargs | | ||||
| chksum | Create and verify checksums | sh | md5sum,<br>sha256sum | | | chksum | Create and verify checksums | sh | md5sum,<br>sha256sum | | ||||
@@ -33,6 +32,7 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina | |||||
| imgur | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) | bash | - | | | imgur | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) | bash | - | | ||||
| imgviu | View an image or images in dir in `$PAGER` | sh | [viu](https://github.com/atanunq/viu), less | | | imgviu | View an image or images in dir in `$PAGER` | sh | [viu](https://github.com/atanunq/viu), less | | ||||
| ipinfo | Fetch external IP address and whois information | sh | curl, whois | | | ipinfo | Fetch external IP address and whois information | sh | curl, whois | | ||||
| jump | Navigate to dir/path (**autojump stores navigation patterns**) | sh | autojump | | |||||
| kdeconnect | Send selected files to an Android device | sh | kdeconnect-cli | | | kdeconnect | Send selected files to an Android device | sh | kdeconnect-cli | | ||||
| launch | GUI application launcher | sh | fzf/fzy | | | launch | GUI application launcher | sh | fzf/fzy | | ||||
| mediainf | Show media information | sh | mediainfo | | | mediainf | Show media information | sh | mediainfo | | ||||
@@ -4,6 +4,8 @@ | |||||
# | # | ||||
# Requires: autojump - https://github.com/wting/autojump | # Requires: autojump - https://github.com/wting/autojump | ||||
# | # | ||||
# Note: autojump STORES NAVIGATION PATTERNS | |||||
# | |||||
# Shell: POSIX compliant | # Shell: POSIX compliant | ||||
# Author: Marty Buchaus | # Author: Marty Buchaus | ||||