Please work.

This commit is contained in:
dylan araps 2016-01-05 19:24:57 +11:00
parent 53cc0067b4
commit 5182deeec1
1 changed files with 2 additions and 3 deletions

View File

@ -622,7 +622,6 @@ getwallpaper () {
"Windows") "Windows")
case "$distro" in case "$distro" in
"Windows XP") "Windows XP")
# TODO: Fix the path.
img="/cygdrive/c/Documents and Settings/${USER}/Local Settings/Application Data/Microsoft/Wallpaper1.bmp" img="/cygdrive/c/Documents and Settings/${USER}/Local Settings/Application Data/Microsoft/Wallpaper1.bmp"
;; ;;
@ -669,7 +668,7 @@ getimage () {
# Check to see if the thumbnail exists before we do any cropping. # Check to see if the thumbnail exists before we do any cropping.
if [ ! -f "$imgtempdir/$imgname" ]; then if [ ! -f "$imgtempdir/$imgname" ]; then
# Get image size so that we can do a better crop # Get image size so that we can do a better crop
size=$(identify -format "%w %h" $img) size=$(identify -format "%w %h" "$img")
width=${size%% *} width=${size%% *}
height=${size##* } height=${size##* }
@ -1003,7 +1002,7 @@ bold
printinfo printinfo
# Display the image # Display the image
[ "$images" == "on" ] && printf "0;1;$xoffset;$yoffset;$imgsize;$imgsize;;;;;$img\n4;\n3;" |\ [ "$images" == "on" ] && printf "0;1;$xoffset;$yoffset;$imgsize;$imgsize;;;;;"$img"\n4;\n3;" |\
/usr/lib/w3m/w3mimgdisplay /usr/lib/w3m/w3mimgdisplay
# Enable line wrap again # Enable line wrap again