nnn/plugins/getplugs

67 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-04-19 13:34:20 +00:00
#!/usr/bin/env sh
# Description: Update nnn plugins
#
# Shell: POSIX compliant
2019-11-17 16:26:05 +00:00
# Author: Arun Prakash Jana, KlzXS
2019-04-19 13:34:20 +00:00
2019-06-20 13:40:47 +00:00
CONFIG_DIR=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/
PLUGIN_DIR=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/plugins
is_cmd_exists () {
which "$1" > /dev/null 2>&1
echo $?
}
merge () {
vimdiff $1 $2
}
prompt () {
echo "Plugin $1 already exists and is different."
echo -n "Keep (k), merge (m), overwrite (o) [default: k]? "
read operation
if [ "$operation" = "m" ]; then
op="merge"
elif [ "$operation" = "o" ]; then
op="cp -vRf"
else
op="true"
fi
}
2019-11-01 15:58:32 +00:00
if [ "$(is_cmd_exists sudo)" -eq "0" ]; then
sucmd=sudo
2019-11-01 15:58:32 +00:00
elif [ "$(is_cmd_exists doas)" -eq "0" ]; then
sucmd=doas
else
sucmd=: # noop
fi
2019-06-05 12:22:33 +00:00
# backup any earlier plugins
2019-06-20 13:40:47 +00:00
if [ -d $PLUGIN_DIR ]; then
tar -C $CONFIG_DIR -czf $CONFIG_DIR"plugins-$(date '+%Y%m%d%H%M').tar.gz" plugins/
2019-06-05 12:22:33 +00:00
fi
mkdir -p $PLUGIN_DIR
cd $CONFIG_DIR
2019-09-27 15:31:55 +00:00
curl -Ls -O https://github.com/jarun/nnn/archive/master.tar.gz
tar -zxf master.tar.gz
cd nnn-master/plugins
for f in *; do
if [ -f ../../plugins/$f ]; then
if [ "$(diff --brief $f ../../plugins/$f)" ]; then
prompt $f
$op $f ../../plugins/
fi
else
cp -vRf $f ../../plugins/
fi
done
cd ../..
$sucmd mv -vf nnn-master/misc/nlaunch/nlaunch /usr/local/bin/
rm -rf nnn-master/ master.tar.gz $PLUGIN_DIR/README.md