Thanks for the additional info.
I have added a fix to hopefully prevent updates routines from running if you have updates turned off. You will see that in the next update once I release it.
There is a config file for both the updates option and monitor layout.
The update setting in the config should be working fine.
As for the monitor layout, could you perhaps share a screenshot of your monitor layout for windows and what Multiwall is showing for the layout as well as the config?
You can find instructions
here for the custom layouts as quoted below.
I am curious however as to why the app isn't handling it well already, so a forced layout is of course a less than desirable solution.
My screen layout is wrong!
If for some reason your screen layout is just not matching your real setup. Then there is something you can do.
Firstly you should exit the application.
Navigate to "%appdata%/MultiWall/"
Edit the file "profile.json" with your favourite editor.
Locate and replace where it says "OverrideLayout":false" with "OverrideLayout":true"
Now the application will stop generating the file "layout.json" and you may edit it as you wish.
In this file each monitor appears as follows:
{"X":0,"Y":0,"Width":2560,"Height":1600,"DeviceName":"\\\\.\\DISPLAY1","Primary":true,"Bounds":"0, 0, 2560, 1600"}
X is the X offset of the screen relative to the primary screen
Y is the Y offset of the screen relative to the primary screen
Width is the X resolution of the screen
Height is the Y resolution of the screen
DeviceName and Primary should be left alone.
Bounds should be left alone.
My Layout.json for 3 screens looks like this:
Code: Select all
[
{
"X":3840,
"Y":-406,
"Width":1600,
"Height":2560,
"DeviceName":"\\\\.\\DISPLAY3",
"Primary":false,
"Bounds":"3840, -406, 1600, 2560"
},
{
"X":-1920,
"Y":440,
"Width":1920,
"Height":1200,
"DeviceName":"\\\\.\\DISPLAY4",
"Primary":false,
"Bounds":"-1920, 440, 1920, 1200"
},
{
"X":0,
"Y":0,
"Width":3840,
"Height":2160,
"DeviceName":"\\\\.\\DISPLAY2",
"Primary":true,
"Bounds":"0, 0, 3840, 2160"
}
]
Update: I have released 1.0.37 with the fix for updates, please update. I suppose you will only be able to tell if it works if there is a another new update unless you edit the config yourself.