From 0fed289d58bb5f0675ebed37f5bb71b11ad54b9e Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 24 Jan 2017 12:18:44 +1100 Subject: [PATCH] Config: Fix config error on macOS --- neofetch | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index 611c445a..48825845 100755 --- a/neofetch +++ b/neofetch @@ -3297,6 +3297,9 @@ get_default_config() { if [[ -f "/etc/neofetch/config" ]]; then default_config="/etc/neofetch/config" + elif [[ -f "/usr/local/etc/neofetch/config" ]]; then + default_config="/usr/local/etc/neofetch/config" + elif [[ -f "/data/data/com.termux/files/etc/neofetch/config" ]]; then default_config="/data/data/com.termux/files/etc/neofetch/config" @@ -3327,11 +3330,11 @@ get_user_config() { if [[ -f "${XDG_CONFIG_HOME}/neofetch/config" ]]; then config_file="${XDG_CONFIG_HOME}/neofetch/config" - elif [[ -f "/usr/share/neofetch/config" ]]; then + elif [[ -f "/etc/neofetch/config" ]]; then cp "/usr/share/neofetch/config" "${XDG_CONFIG_HOME}/neofetch" config_file="${XDG_CONFIG_HOME}/neofetch/config" - elif [[ -f "/usr/local/share/neofetch/config" ]]; then + elif [[ -f "/usr/local/etc/neofetch/config" ]]; then cp "/usr/local/share/neofetch/config" "${XDG_CONFIG_HOME}/neofetch" config_file="${XDG_CONFIG_HOME}/neofetch/config"