Fix paths for "proper" Haiku installation
Recommendation: consider working out some way for there to be a standard `$PREFIX` variable for this, and some other way to populate this correctly based on the `$PREFIX` passed to `make install`.
This commit is contained in:
parent
0bca00a116
commit
87cfcfc72a
1 changed files with 6 additions and 0 deletions
6
neofetch
6
neofetch
|
@ -2031,6 +2031,9 @@ get_ascii() {
|
|||
elif [[ -d "/data/data/com.termux/files/usr/share/neofetch/ascii/distro" ]]; then
|
||||
ascii_dir="/data/data/com.termux/files/usr/share/neofetch/ascii/distro"
|
||||
|
||||
elif [[ -d "/boot/home/config/non-packaged/share/neofetch/ascii/distro" ]]; then
|
||||
ascii_dir="/boot/home/config/non-packaged/share/neofetch/ascii/distro"
|
||||
|
||||
else
|
||||
[[ -z "$script_dir" ]] && script_dir="$(get_full_path "$0")"
|
||||
ascii_dir="${script_dir%/*}/ascii/distro"
|
||||
|
@ -3313,6 +3316,9 @@ get_default_config() {
|
|||
elif [[ -f "/data/data/com.termux/files/etc/neofetch/config" ]]; then
|
||||
default_config="/data/data/com.termux/files/etc/neofetch/config"
|
||||
|
||||
elif [[ -f "/boot/home/config/non-packaged/etc/neofetch/config" ]]; then
|
||||
default_config="/boot/home/config/non-packaged/etc/neofetch/config"
|
||||
|
||||
else
|
||||
[[ -z "$script_dir" ]] && script_dir="$(get_full_path "$0")"
|
||||
default_config="${script_dir%/*}/config/config"
|
||||
|
|
Loading…
Reference in a new issue