And I wonder if it is possible to automatically update my desktop icons profile when I move some icons? Is this possible? Or do I have to click Desktop Icons > Save Profile every time?
Not a problem. I sometimes also forget to disable checkbox.
On the screenshot are all correct. In load trigger you can use a script to ensure that there is no confirmation message each time you desktop unlocked:
using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Set you profile name
BFS.DisplayFusion.LoadDesktopIconsProfile("DesktopIconsProfile");
}
}