mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 03:41:27 +00:00
Plugin getplugs: update nnn plugins
This commit is contained in:
parent
430945d420
commit
d5107d28ac
|
@ -1,15 +1,16 @@
|
||||||
| Plugin (a-z) | Lang | Deps | Description |
|
| Plugin (a-z) | Lang | Deps | Description |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| edit | sh | fzy | Fuzzy find a file in directory subtree and edit in vim |
|
| fzy-edit | sh | fzy | Fuzzy find a file in directory subtree and edit in vim |
|
||||||
| fzy | sh | fzy | Fuzzy find a file in directory subtree and open using xdg-open |
|
| fzy-open | sh | fzy | Fuzzy find a file in directory subtree and open using xdg-open |
|
||||||
| hexview | sh | xxd, `$PAGER` | view a file in hex |
|
| getplugs | sh | wget | Update plugins |
|
||||||
|
| hexview | sh | xxd, `$PAGER` | View a file in hex |
|
||||||
| imgresize | sh | [imgp](https://github.com/jarun/imgp) | Resize images in directory to screen resolution |
|
| imgresize | sh | [imgp](https://github.com/jarun/imgp) | Resize images in directory to screen resolution |
|
||||||
| imgur | bash | - | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) |
|
| imgur | bash | - | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) |
|
||||||
| kdeconnect | sh | kdeconnect-cli | Send selected files to an Android device |
|
| kdeconnect | sh | kdeconnect-cli | Send selected files to an Android device |
|
||||||
| ndiff | sh | vimdiff | File and directory diff for selection |
|
| ndiff | sh | vimdiff | File and directory diff for selection |
|
||||||
| nmount | sh | pmount | Toggle mount status of a device as normal user |
|
| nmount | sh | pmount | Toggle mount status of a device as normal user |
|
||||||
| nwal | sh | nitrogen | Set the selected image as wallpaper using nitrogen |
|
| nwal | sh | nitrogen | Set the selected image as wallpaper using nitrogen |
|
||||||
| paste | sh | [pastebinit](https://launchpad.net/pastebinit) | Paste contents of current (text) file to paste.ubuntu.com |
|
| pastebin | sh | [pastebinit](https://launchpad.net/pastebinit) | Paste contents of current (text) file to paste.ubuntu.com |
|
||||||
| picker | sh | nnn | Pick files and pipe the newline-separated list to another utility |
|
| picker | sh | nnn | Pick files and pipe the newline-separated list to another utility |
|
||||||
| pywal | sh | pywal | Set selected image as wallpaper, change terminal color scheme |
|
| pywal | sh | pywal | Set selected image as wallpaper, change terminal color scheme |
|
||||||
| sxiv | sh | sxiv | Browse images in a dir in sxiv, set wallpaper, copy path ([config](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts))|
|
| sxiv | sh | sxiv | Browse images in a dir in sxiv, set wallpaper, copy path ([config](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts))|
|
||||||
|
|
11
plugins/getplugs
Executable file
11
plugins/getplugs
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
# Description: Update nnn plugins
|
||||||
|
#
|
||||||
|
# Shell: POSIX compliant
|
||||||
|
# Author: Arun Prakash Jana
|
||||||
|
|
||||||
|
wget -nv --show-progress https://github.com/jarun/nnn/archive/master.tar.gz
|
||||||
|
tar -xf master.tar.gz
|
||||||
|
cp -vf nnn-master/plugins/* .
|
||||||
|
rm -rf nnn-master/ master.tar.gz README.md
|
Loading…
Reference in a new issue