mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Use Firefox Send for upload if ffsend is found
This commit is contained in:
parent
ef0e973134
commit
a103f513c3
|
@ -72,7 +72,7 @@ Plugins are installed to `${XDG_CONFIG_HOME:-$HOME/.config}/nnn/plugins`.
|
||||||
| [treeview](treeview) | Informative tree output in `$EDITOR` | sh | tree |
|
| [treeview](treeview) | Informative tree output in `$EDITOR` | sh | tree |
|
||||||
| [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) | Paste text to ix.io, upload binary to file.io | sh | 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 |
|
||||||
| [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_ |
|
||||||
|
|
|
@ -1,15 +1,18 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
# Description: Paste contents of a text a file http://ix.io
|
# Description: Upload to Firefox Send if ffsend is found, else
|
||||||
|
# Paste contents of a text a file http://ix.io
|
||||||
# Upload a binary file to file.io
|
# Upload a binary file to file.io
|
||||||
# Dependencies: curl, jq, tr
|
# Dependencies: ffsend (https://github.com/timvisee/ffsend), curl, jq, tr
|
||||||
# Note: Binary file set to expire after a week
|
# Note: Binary file set to expire after a week
|
||||||
#
|
#
|
||||||
# Shell: POSIX compliant
|
# Shell: POSIX compliant
|
||||||
# Author: Arun Prakash Jana
|
# Author: Arun Prakash Jana
|
||||||
|
|
||||||
if ! [ -z "$1" ] && [ -s "$1" ]; then
|
if ! [ -z "$1" ] && [ -s "$1" ]; then
|
||||||
if [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "text" ]; then
|
if which ffsend >/dev/null 2>&1; then
|
||||||
|
ffsend -iq u "$1"
|
||||||
|
elif [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "text" ]; then
|
||||||
curl -F "f:1=@$1" ix.io
|
curl -F "f:1=@$1" ix.io
|
||||||
else
|
else
|
||||||
# Upload the file, show the download link and wait till user presses any key
|
# Upload the file, show the download link and wait till user presses any key
|
||||||
|
|
Loading…
Reference in a new issue