mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 03:41:27 +00:00
Update plugins to support some env vars
This commit is contained in:
parent
a2c2332fc5
commit
b8a973a91a
23
plugins/boom
23
plugins/boom
|
@ -6,25 +6,36 @@
|
||||||
# Shell: POSIX compliant
|
# Shell: POSIX compliant
|
||||||
# Author: Arun Prakash Jana
|
# Author: Arun Prakash Jana
|
||||||
|
|
||||||
#GUIPLAYER=smplayer
|
GUIPLAYER="${GUIPLAYER}"
|
||||||
|
NUMTRACKS="${NUMTRACKS:-100}"
|
||||||
NUMTRACKS=100
|
|
||||||
|
|
||||||
if [ ! -z "$GUIPLAYER" ]; then
|
if [ ! -z "$GUIPLAYER" ]; then
|
||||||
PLAYER="$GUIPLAYER"
|
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n "$NUMTRACKS" | xargs -d "\n" "$GUIPLAYER" > /dev/null 2>&1 &
|
||||||
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &
|
|
||||||
|
|
||||||
# detach the player
|
# detach the player
|
||||||
sleep 1
|
sleep 1
|
||||||
elif which mocp >/dev/null 2>&1; then
|
elif which mocp >/dev/null 2>&1; then
|
||||||
|
cmd=$(pgrep -x mocp 2>/dev/null)
|
||||||
|
ret=$cmd
|
||||||
|
|
||||||
|
if [ -z "$ret" ]; then
|
||||||
# start MOC server
|
# start MOC server
|
||||||
mocp -S
|
mocp -S
|
||||||
|
else
|
||||||
|
# mocp running, check if it's playing
|
||||||
|
state=$(mocp -i | grep "State:" | cut -d' ' -f2)
|
||||||
|
if [ "$state" = 'PLAY' ]; then
|
||||||
|
# add up to 100 random audio files
|
||||||
|
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n "$NUMTRACKS" | xargs -d "\n" mocp -a
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# clear MOC playlist
|
# clear MOC playlist
|
||||||
mocp -c
|
mocp -c
|
||||||
|
|
||||||
# add up to 100 random audio files
|
# add up to 100 random audio files
|
||||||
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n $NUMTRACKS | xargs -d "\n" mocp -a
|
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n "$NUMTRACKS" | xargs -d "\n" mocp -a
|
||||||
|
|
||||||
# start playing
|
# start playing
|
||||||
mocp -p
|
mocp -p
|
||||||
|
|
|
@ -18,11 +18,11 @@
|
||||||
# Shell: POSIX compliant
|
# Shell: POSIX compliant
|
||||||
# Author: Arun Prakash Jana
|
# Author: Arun Prakash Jana
|
||||||
|
|
||||||
EBOOK_ID=
|
EBOOK_ID="${EBOOK_ID}"
|
||||||
DIR="${XDG_CACHE_HOME:-$HOME/.cache}/nnn/gutenbooks/$EBOOK_ID"
|
DIR="${XDG_CACHE_HOME:-$HOME/.cache}/nnn/gutenbooks/$EBOOK_ID"
|
||||||
BROWSE_LINK="http://www.gutenberg.org/ebooks/search/?sort_order=downloads"
|
BROWSE_LINK="http://www.gutenberg.org/ebooks/search/?sort_order=downloads"
|
||||||
BROWSER=w3m
|
BROWSER="${BROWSER:-w3m}"
|
||||||
READER=
|
READER="${READER}"
|
||||||
|
|
||||||
if [ -n "$EBOOK_ID" ]; then
|
if [ -n "$EBOOK_ID" ]; then
|
||||||
if [ ! -e "$DIR" ]; then
|
if [ ! -e "$DIR" ]; then
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#
|
#
|
||||||
# Notes:
|
# Notes:
|
||||||
# 1. Set res if you don't want to be prompted for desktop resolution every time
|
# 1. Set res if you don't want to be prompted for desktop resolution every time
|
||||||
# 2. minsize is set to 1MB by default, adjust it if you want
|
# 2. MINSIZE is set to 1MB by default, adjust it if you want
|
||||||
# 3. imgp options used:
|
# 3. imgp options used:
|
||||||
# a - adaptive mode
|
# a - adaptive mode
|
||||||
# c - convert PNG to JPG
|
# c - convert PNG to JPG
|
||||||
|
@ -15,16 +15,16 @@
|
||||||
# Author: Arun Prakash Jana
|
# Author: Arun Prakash Jana
|
||||||
|
|
||||||
# set resolution (e.g. 1920x1080)
|
# set resolution (e.g. 1920x1080)
|
||||||
res=
|
res="${RESOLUTION}"
|
||||||
|
|
||||||
# set minimum image size (in bytes) to resize (default: 1MB)
|
# set minimum image size (in bytes) to resize (default: 1MB)
|
||||||
minsize=1048576
|
MINSIZE="${MINSIZE:-1048576}"
|
||||||
|
|
||||||
if [ -z "$res" ]; then
|
if [ -z "$res" ]; then
|
||||||
printf "desktop resolution (hxv): "
|
printf "desktop resolution (hxv): "
|
||||||
read -r res
|
read -r res
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! [ -z "$res" ] && ! [ -z "$minsize" ]; then
|
if ! [ -z "$res" ] && ! [ -z "$MINSIZE" ]; then
|
||||||
imgp -ackx "$res" -s "$minsize"
|
imgp -ackx "$res" -s "$MINSIZE"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -16,11 +16,11 @@ selection=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection
|
||||||
cmd=$(pgrep -x mocp 2>/dev/null)
|
cmd=$(pgrep -x mocp 2>/dev/null)
|
||||||
ret=$cmd
|
ret=$cmd
|
||||||
|
|
||||||
SHUFFLE=0
|
SHUFFLE="${SHUFFLE:-0}"
|
||||||
|
|
||||||
mocp_add ()
|
mocp_add ()
|
||||||
{
|
{
|
||||||
if [ $SHUFFLE = 1 ]; then
|
if [ "$SHUFFLE" = 1 ]; then
|
||||||
if [ "$resp" = "y" ]; then
|
if [ "$resp" = "y" ]; then
|
||||||
arr=$(tr '\0' '\n' < "$selection")
|
arr=$(tr '\0' '\n' < "$selection")
|
||||||
elif [ -n "$1" ]; then
|
elif [ -n "$1" ]; then
|
||||||
|
|
12
plugins/nuke
12
plugins/nuke
|
@ -66,7 +66,7 @@
|
||||||
# #############################################################################
|
# #############################################################################
|
||||||
|
|
||||||
# set to 1 to enable GUI apps
|
# set to 1 to enable GUI apps
|
||||||
GUI=0
|
GUI="${GUI:-0}"
|
||||||
|
|
||||||
set -euf -o noclobber -o noglob -o nounset
|
set -euf -o noclobber -o noglob -o nounset
|
||||||
IFS="$(printf '%b_' '\n')"; IFS="${IFS%_}" # protect trailing \n
|
IFS="$(printf '%b_' '\n')"; IFS="${IFS%_}" # protect trailing \n
|
||||||
|
@ -82,7 +82,7 @@ if ! [ -z "$ext" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
handle_pdf() {
|
handle_pdf() {
|
||||||
if [ $GUI -ne 0 ] && which zathura >/dev/null 2>&1; then
|
if [ "$GUI" -ne 0 ] && which zathura >/dev/null 2>&1; then
|
||||||
zathura "${FPATH}" >/dev/null 2>&1 &
|
zathura "${FPATH}" >/dev/null 2>&1 &
|
||||||
exit 0
|
exit 0
|
||||||
elif which pdftotext >/dev/null 2>&1; then
|
elif which pdftotext >/dev/null 2>&1; then
|
||||||
|
@ -115,10 +115,10 @@ handle_audio() {
|
||||||
}
|
}
|
||||||
|
|
||||||
handle_video() {
|
handle_video() {
|
||||||
if [ $GUI -ne 0 ] && which smplayer >/dev/null 2>&1; then
|
if [ "$GUI" -ne 0 ] && which smplayer >/dev/null 2>&1; then
|
||||||
smplayer "${FPATH}" >/dev/null 2>&1 &
|
smplayer "${FPATH}" >/dev/null 2>&1 &
|
||||||
exit 0
|
exit 0
|
||||||
elif [ $GUI -ne 0 ] && which mpv >/dev/null 2>&1; then
|
elif [ "$GUI" -ne 0 ] && which mpv >/dev/null 2>&1; then
|
||||||
mpv "${FPATH}" >/dev/null 2>&1 &
|
mpv "${FPATH}" >/dev/null 2>&1 &
|
||||||
exit 0
|
exit 0
|
||||||
elif which ffmpegthumbnailer >/dev/null 2>&1; then
|
elif which ffmpegthumbnailer >/dev/null 2>&1; then
|
||||||
|
@ -285,7 +285,7 @@ handle_multimedia() {
|
||||||
|
|
||||||
## Image
|
## Image
|
||||||
image/*)
|
image/*)
|
||||||
if [ $GUI -ne 0 ] && which sxiv >/dev/null 2>&1; then
|
if [ "$GUI" -ne 0 ] && which sxiv >/dev/null 2>&1; then
|
||||||
sxiv_load_dir "${FPATH}" >/dev/null 2>&1 &
|
sxiv_load_dir "${FPATH}" >/dev/null 2>&1 &
|
||||||
exit 0
|
exit 0
|
||||||
elif which viu >/dev/null 2>&1; then
|
elif which viu >/dev/null 2>&1; then
|
||||||
|
@ -450,7 +450,7 @@ handle_mime() {
|
||||||
}
|
}
|
||||||
|
|
||||||
handle_fallback() {
|
handle_fallback() {
|
||||||
if [ $GUI -ne 0 ]; then
|
if [ "$GUI" -ne 0 ]; then
|
||||||
xdg-open "${FPATH}" >/dev/null 2>&1 &
|
xdg-open "${FPATH}" >/dev/null 2>&1 &
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue