aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/upload
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-06-10 23:32:03 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-06-10 23:32:03 +0530
commita103f513c38329dcf22fd73f34b1117156f391ae (patch)
tree2c9a5680eb87521683c92a588ee71a335420affb /plugins/upload
parentef0e9731345b020eccbb67d511d958bc92f7fb89 (diff)
downloadnnn-a103f513c38329dcf22fd73f34b1117156f391ae.tar.gz
Use Firefox Send for upload if ffsend is found
Diffstat (limited to 'plugins/upload')
-rwxr-xr-xplugins/upload9
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/upload b/plugins/upload
index f2df1c0..196e8f7 100755
--- a/plugins/upload
+++ b/plugins/upload
@@ -1,15 +1,18 @@
#!/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
-# Dependencies: curl, jq, tr
+# Dependencies: ffsend (https://github.com/timvisee/ffsend), curl, jq, tr
# Note: Binary file set to expire after a week
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
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
else
# Upload the file, show the download link and wait till user presses any key