Async Measure
Last updated
Was this helpful?
Last updated
Was this helpful?
Async measure is tailored for long executing time or infinite loop script.
Script will be executed asynchronously without blocking Rainmeter main thread so other measures/meters can continue to work.
Measure value are just invocation status, not any object from script.
is only be executed when script finishes.
To specify a Powershell plugin measure as Async measure, set Async = 1
Line
, Line2
, Line3
, ...Defines script will be invoked at update line by line. Last object of this script will be measure value.
PowerShell syntax allows you to define a whole valid script in one line, but in favor of customization and readability, please do break them down to reasonable line width.
ScriptFile
Specify file name (if script file is in same folder as skin config) or direct path to script file.
Script files can only be used in parent measure. And only script in script file is invoked, if you both set ScriptFile
and Line
s, script defined in Line
s will be ignored.