]> Sergey Matveev's repositories - nnn.git/commitdiff
Use ix.io paste service
authorArun Prakash Jana <engineerarun@gmail.com>
Fri, 4 Oct 2019 13:15:21 +0000 (18:45 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Fri, 4 Oct 2019 13:15:21 +0000 (18:45 +0530)
plugins/README.md
plugins/pastebin

index 3cf0c701aaa1445dd787c0abf8c566375931e5b8..7761f5794a252acf18f5ce9a566112a1fcfb2714 100644 (file)
@@ -28,7 +28,7 @@ The currently available plugins are listed below.
 | nwal | sh | nitrogen | Set image as wallpaper using nitrogen |
 | oldbigfile | sh | find, sort | List large files by access time |
 | organize | sh | file | Auto-organize files in directories by file type |
-| pastebin | sh | [pastebinit](https://launchpad.net/pastebinit) | Paste contents of (text) file to paste.ubuntu.com |
+| pastebin | sh | - | Paste contents of a text a file ix.io |
 | pdfview | sh | pdftotext/<br>mupdf-tools | View PDF file in `$PAGER` |
 | picker | sh | nnn | Pick files and list one per line (to pipe) |
 | pywal | sh | pywal | Set image as wallpaper, change terminal colorscheme |
index de130e456d5023029733e8173705d0da05bfef48..13fb3e7326c8ccdf2e39b29b76e267ef26ddbb06 100755 (executable)
@@ -1,13 +1,11 @@
 #!/usr/bin/env sh
 
-# Description: Paste contents of a text a file to paste.ubuntu.com using pastebinit
-#
-# pastebinit: https://launchpad.net/pastebinit
+# Description: Paste contents of a text a file http://ix.io
 #
 # Shell: POSIX compliant
 # Author: Arun Prakash Jana
 
 if ! [ -z "$1" ]; then
-    pastebinit "$1"
+    curl -F "f:1=@"$1"" ix.io
     read input
 fi