Patch to make w3m image backend work on FreeBSD 11
Just an extra possible directory to search for w3m-img before outputting that it wasn't found on the system.
This commit is contained in:
parent
abaf8808fe
commit
d9d7b79d72
3
neofetch
3
neofetch
|
@ -2293,6 +2293,9 @@ get_w3m_img_path() {
|
|||
elif [[ -x "/usr/libexec64/w3m/w3mimgdisplay" ]]; then
|
||||
w3m_img_path="/usr/libexec64/w3m/w3mimgdisplay"
|
||||
|
||||
elif [[ -x "/usr/local/libexec/w3m/w3mimgdisplay" ]]; then
|
||||
w3m_img_path="/usr/local/libexec/w3m/w3mimgdisplay"
|
||||
|
||||
else
|
||||
err "Image: w3m-img wasn't found on your system"
|
||||
fi
|
||||
|
|
Reference in New Issue