Integrate similar plugins, diff should begin at start of file

This commit is contained in:
Arun Prakash Jana 2019-11-22 12:28:55 +05:30
parent a34200a747
commit 085bda0330
No known key found for this signature in database
GPG Key ID: A75979F35C080412
5 changed files with 35 additions and 38 deletions

View File

@ -35,14 +35,12 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
| ndiff | Diff for selection (limited to 2 for directories) | sh | vimdiff |
| nmount | Toggle mount status of a device as normal user | sh | pmount, udisks2 |
| notes | Open a quick notes file/dir in `$EDITOR` | sh | - |
| nwal | Set image as wallpaper using nitrogen | sh | nitrogen |
| oldbigfile | List large files by access time | sh | find, sort |
| organize | Auto-organize files in directories by file type | sh | file |
| pastebin | Paste contents of a text a file ix.io | sh | - |
| pdfview | View PDF file in `$PAGER` | sh | pdftotext/<br>mupdf-tools |
| picker | Pick files and list one per line (to pipe) | sh | nnn |
| pskill | Fuzzy list by name and kill process or zombie | sh | fzy, sudo/doas |
| pywal | Set image as wallpaper, change terminal colorscheme | sh | pywal |
| readit | Read a PDF or text file aloud | sh | pdftotext, mpv,<br>pico2wave |
| ringtone | Create a variable bitrate mp3 ringtone from file | sh | date, ffmpeg |
| splitjoin | Split file or join selection | sh | split, cat |
@ -55,6 +53,7 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
| upgrade | Upgrade nnn manually on Debian 9 Stretch | sh | curl |
| vidthumb | Show video thumbnails in terminal | sh | [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer),<br>[lsix](https://github.com/hackerb9/lsix) |
| viuimg | View an image or images in dir in `$PAGER` | sh | [viu](https://github.com/atanunq/viu), less |
| wall | Set wallpaper or change colorscheme | sh | nitrogen/pywal |
## Installing plugins
@ -149,10 +148,10 @@ There are many plugins provided by `nnn` which can be used as examples. Here are
- Change to arbitrary directory without helper script
```sh
#!/usr/bin/env sh
echo -n "cd to: "
read dir
printf "cd to: "
read -r dir
echo -n "0$dir" > $NNN_PIPE
printf "%s" "0$dir" > "$NNN_PIPE"
```
## Contributing plugins

View File

@ -14,7 +14,7 @@ is_cmd_exists () {
}
merge () {
vimdiff "$1" "$2"
vimdiff +0 "$1" "$2"
}
prompt () {

View File

@ -1,16 +0,0 @@
#!/usr/bin/env sh
# Description: Set the selected image as wallpaper using nitrogen. Just put the cursor on a image and run the script.
#
# Shell: POSIX Compliant
# Author: juacq97
if ! [ -z "$1" ]; then
if [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "image" ]; then
nitrogen --set-zoom-fill --save "$1"
# If you want a system notification, uncomment the next 3 lines.
# notify-send -a "nnn" "Wallpaper changed!"
# else
# notify-send -a "nnn" "No image selected"
fi
fi

View File

@ -1,16 +0,0 @@
#!/usr/bin/env sh
# Description: Set the selected image as wallpaper using pywal and change the terminal color schemes. Just put the cursor on a image and run the script.
#
# Shell: POSIX Compliant
# Author: juacq97
if ! [ -z "$1" ]; then
if [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "image" ]; then
wal -i "$1"
# If you want a system notification, uncomment the next 3 lines.
# notify-send -a "nnn" "Wallpaper changed!"
# else
# notify-send -a "nnn" "No image selected"
fi
fi

30
plugins/wall Executable file
View File

@ -0,0 +1,30 @@
#!/usr/bin/env sh
# Description: Set the selected image as wallpaper using nitrogen or pywal.
# Usage: Hover on an image and run the script to set it as wallpaper.
#
# Shell: POSIX Compliant
# Author: juacq97
cmd_exists () {
which "$1" > /dev/null 2>&1
echo $?
}
if ! [ -z "$1" ]; then
if [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "image" ]; then
if [ "$(cmd_exists nitrogen)" -eq "0" ]; then
nitrogen --set-zoom-fill --save "$1"
elif [ "$(cmd_exists wal)" -eq "0" ]; then
wal -i "$1"
else
printf "nitrogen ir pywal missing"
read -r _
fi
# If you want a system notification, uncomment the next 3 lines.
# notify-send -a "nnn" "Wallpaper changed!"
# else
# notify-send -a "nnn" "No image selected"
fi
fi