image: Fix bug with getting wallpaper from feh.
This commit is contained in:
parent
f9d881e905
commit
b763c31ad7
1 changed files with 1 additions and 1 deletions
2
neofetch
2
neofetch
|
@ -2492,7 +2492,7 @@ get_wallpaper() {
|
||||||
|
|
||||||
*)
|
*)
|
||||||
if type -p feh >/dev/null && [[ -f "${HOME}/.fehbg" ]]; then
|
if type -p feh >/dev/null && [[ -f "${HOME}/.fehbg" ]]; then
|
||||||
image="$(< "${HOME}/.fehbg")"
|
image="$(awk '{print $NF}' "${HOME}/.fehbg")"
|
||||||
image="${image#*\'}"
|
image="${image#*\'}"
|
||||||
image="${image%\'*}"
|
image="${image%\'*}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue