Revert "modified install shell to install to xdg-config-dirs to comply with xdg standards"

This reverts commit 6b4617fcd1e8f0ca37e7464b29a8e79d88a4d5d7.
This commit is contained in:
andrew 2023-10-06 12:08:21 +08:00
parent 6b4617fcd1
commit 5e8edb961e

View File

@ -6,12 +6,11 @@ if [ ! "$(command -v unzip)" ]; then
exit 1 exit 1
fi fi
_fetch_sources(){ _fetch_sources(){
wget -O /tmp/nanorc.zip https://github.com/scopatz/nanorc/archive/master.zip wget -O /tmp/nanorc.zip https://github.com/scopatz/nanorc/archive/master.zip
mkdir -p ~/.config/nano/ mkdir -p ~/.nano/
cd ~/.config/nano/ || exit cd ~/.nano/ || exit
unzip -o "/tmp/nanorc.zip" unzip -o "/tmp/nanorc.zip"
mv nanorc-master/* ./ mv nanorc-master/* ./
rm -rf nanorc-master rm -rf nanorc-master
@ -19,21 +18,21 @@ _fetch_sources(){
} }
_update_nanorc(){ _update_nanorc(){
touch ~/.config/nano/nanorc touch ~/.nanorc
# add all includes from ~/.config/nano/nanorc if they're not already there # add all includes from ~/.nano/nanorc if they're not already there
while read -r inc; do while read -r inc; do
if ! grep -q "$inc" "${NANORC_FILE}"; then if ! grep -q "$inc" "${NANORC_FILE}"; then
echo "$inc" >> "$NANORC_FILE" echo "$inc" >> "$NANORC_FILE"
fi fi
done < ~/.config/nano/nanorc done < ~/.nano/nanorc
} }
_update_nanorc_lite(){ _update_nanorc_lite(){
sed -i '/include "\/usr\/share\/nano\/\*\.nanorc"/i include "~\/.conig.\/nano\/*.nanorc"' "${NANORC_FILE}" sed -i '/include "\/usr\/share\/nano\/\*\.nanorc"/i include "~\/.nano\/*.nanorc"' "${NANORC_FILE}"
} }
NANORC_FILE=~/.config\/nano\/nanorc NANORC_FILE=~/.nanorc
case "$1" in case "$1" in
-l|--lite) -l|--lite)