Wallpaper: Replace %20 with space

This commit is contained in:
Dylan Araps 2016-10-03 10:03:41 +11:00
parent a2bcd934ad
commit 830cf0ec3b
2 changed files with 2 additions and 1 deletions

View File

@ -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"

View File

@ -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
;; ;;