Often I like to have a good ol' favorite wallpaper up on my monitors. It would be a nice addition if DF had a button for this.
Here's the code I use to 'manually' do this and it works great:
------------------------
reg add "hkcu\control panel\desktop" /v wallpaper /t REG_SZ /d "" /f
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
:
using the /f switch in the batch file to get past the are-you-sure overwrite prompt)
reg add "hkcu\control panel\desktop" /v wallpaper /t REG_SZ /d "C:\Documents and Settings\benway\Walls\Doublewide.bmp" /f
::change the last number on the next line: 0 for center, 2 for stretch
REG ADD "HKCU\Control Panel\Desktop" /V WallpaperStyle /T REG_SZ /F /D 0
::refreshes the display so the new wallpaper loads
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
------------------------
The wallpaper path can be anything you like or DF could let you select pics or use the currently loaded ones.