w3m: Simplify function further.

This commit is contained in:
Dylan Araps 2018-05-31 08:10:43 +10:00
parent c6fde1ff9a
commit 077e5fadb7
1 changed files with 1 additions and 4 deletions

View File

@ -3560,10 +3560,7 @@ END
get_w3m_img_path() {
# Find w3m-img path.
shopt -s nullglob
w3m_paths=(
/usr/{local/,}{lib,libexec,lib64,libexec64}/w3m/w3mi*
~/.nix-profile/libexec/w3m/w3mi*
)
w3m_paths=({/usr/{local/,},~/.nix-profile/}{lib,libexec,lib64,libexec64}/w3m/w3mi*)
shopt -u nullglob
[[ -x "${w3m_paths[0]}" ]] && \