From 5e8edb961e656dfd8496ae006d01f61ec49dda65 Mon Sep 17 00:00:00 2001 From: andrew Date: Fri, 6 Oct 2023 12:08:21 +0800 Subject: [PATCH] Revert "modified install shell to install to xdg-config-dirs to comply with xdg standards" This reverts commit 6b4617fcd1e8f0ca37e7464b29a8e79d88a4d5d7. --- install.sh | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/install.sh b/install.sh index 99a92ec..0785700 100755 --- a/install.sh +++ b/install.sh @@ -6,12 +6,11 @@ if [ ! "$(command -v unzip)" ]; then exit 1 fi - _fetch_sources(){ 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" mv nanorc-master/* ./ rm -rf nanorc-master @@ -19,21 +18,21 @@ _fetch_sources(){ } _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 if ! grep -q "$inc" "${NANORC_FILE}"; then echo "$inc" >> "$NANORC_FILE" fi - done < ~/.config/nano/nanorc + done < ~/.nano/nanorc } _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 -l|--lite)