Add a script for installing NVS

This commit is contained in:
Manuel Thalmann 2023-04-04 15:55:56 +02:00
parent 02d0451d62
commit 58a582074b

View file

@ -0,0 +1,10 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
yay --noconfirm -Syu nvs-git;
source "/etc/profile.d/nvs.sh";
NVS_HOME='$HOME/.nvs' \
NVS_PATH="$NVS_ROOT" \
. "../../../Common/Config/NVS/install.sh";
popd > /dev/null;