Wallpaper: Replace %20 with space
This commit is contained in:
parent
a2bcd934ad
commit
830cf0ec3b
2 changed files with 2 additions and 1 deletions
|
@ -266,7 +266,7 @@ block_height=1
|
||||||
progress_char_elapsed="-"
|
progress_char_elapsed="-"
|
||||||
progress_char_total="="
|
progress_char_total="="
|
||||||
|
|
||||||
# Progress vorder
|
# Progress border
|
||||||
# --progress_border on/off
|
# --progress_border on/off
|
||||||
progress_border="on"
|
progress_border="on"
|
||||||
|
|
||||||
|
|
1
neofetch
1
neofetch
|
@ -1947,6 +1947,7 @@ getwallpaper() {
|
||||||
# Strip quotes etc from the path.
|
# Strip quotes etc from the path.
|
||||||
img="${img/'file://'}"
|
img="${img/'file://'}"
|
||||||
img="${img//\'}"
|
img="${img//\'}"
|
||||||
|
img="${img//\%20/ }"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue