Hi Sepp,
> Is there any way to make an exemption list or something that will
> make exemption for some apps? Now the script moves all my rainmeter
> gadgets trying to minimize them.
Yes, it's possible. Please adapt the first lines as follows
(here an example with opera-windows to keep):
local l_han_keep = win.handle("active")
local l_han_keep = l_han_keep ++ "," ++ win.owner(l_han_keep)
local l_han_keep = l_han_keep ++ "," ++ win.handle("=opera")
local l_han_rest = win.handlelist("~" ++ l_han_keep)
If you use the second version of the script, which i created for quantiworks,
you have to change l_han_rest into l_han_list.
Remark:
You have to adapt =opera into the exe-name of rainmeter.
If there are other applications you want to keep, just duplicate the line and
adapt other applications.
Best regards