mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
plugin: verbosepaste: gives copy-paste verbose progress percentage (#914)
* plugin: verbosepaste: gives copy-paste verbose progress percentage * plugin: verbosepaste: gives copy-paste verbose progress percentage
This commit is contained in:
parent
d8e370e579
commit
f176d81ea0
|
@ -68,6 +68,7 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
|
||||||
| [uidgid](uidgid) | List user and group of all files in dir | sh | ls, less |
|
| [uidgid](uidgid) | List user and group of all files in dir | sh | ls, less |
|
||||||
| [upgrade](upgrade) | Upgrade nnn manually on Debian 9 Stretch | sh | curl |
|
| [upgrade](upgrade) | Upgrade nnn manually on Debian 9 Stretch | sh | curl |
|
||||||
| [upload](upload) | Upload to Firefox Send or ix.io (text) or file.io (bin) | sh | [ffsend](https://github.com/timvisee/ffsend), curl, jq, tr |
|
| [upload](upload) | Upload to Firefox Send or ix.io (text) or file.io (bin) | sh | [ffsend](https://github.com/timvisee/ffsend), curl, jq, tr |
|
||||||
|
| [rsynccp](rsynccp) | Gives copy-paste verbose progress percentage | sh | rsync |
|
||||||
| [vidthumb](vidthumb) | Show video thumbnails in terminal | sh | [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer),<br>[lsix](https://github.com/hackerb9/lsix) |
|
| [vidthumb](vidthumb) | Show video thumbnails in terminal | sh | [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer),<br>[lsix](https://github.com/hackerb9/lsix) |
|
||||||
| [wall](wall) | Set wallpaper or change colorscheme | sh | nitrogen/pywal |
|
| [wall](wall) | Set wallpaper or change colorscheme | sh | nitrogen/pywal |
|
||||||
| [x2sel](x2sel) | Copy `\n`-separated file list from system clipboard to sel | sh | _see in-file docs_ |
|
| [x2sel](x2sel) | Copy `\n`-separated file list from system clipboard to sel | sh | _see in-file docs_ |
|
||||||
|
|
21
plugins/rsynccp
Executable file
21
plugins/rsynccp
Executable file
|
@ -0,0 +1,21 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
# Description: Simple script to give copy-paste a progress percentage
|
||||||
|
# by utilizing rsync.
|
||||||
|
#
|
||||||
|
# LIMITATION: this won't work when pasting to MTP device.
|
||||||
|
#
|
||||||
|
# Dependencies: rsync
|
||||||
|
#
|
||||||
|
# Shell: POSIX compliant
|
||||||
|
# Author: Benawi Adha
|
||||||
|
|
||||||
|
sel=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection}
|
||||||
|
|
||||||
|
# Choose one of these two schemes by commenting
|
||||||
|
|
||||||
|
# more verbose
|
||||||
|
xargs -0 -a "$sel" -I % rsync -ah --progress % "$PWD"
|
||||||
|
|
||||||
|
# less verbose
|
||||||
|
# xargs -0 -a "$sel" -I % rsync -ah --info=progress2 % "$PWD"
|
Loading…
Reference in a new issue