04-30-2024, 08:56 PM
the title change can easy be achieved by running this script when LA started
/*/ role editorExtension; testInternal Au.Editor; r Au.Editor.dll; r Au.Controls.dll; /*/
var filesPanel = Panels.Files.TreeControl;
filesPanel.SelectionChanged += (o, e) => {
ScriptEditor
.MainWindow()
.SetText(
filesPanel?.SelectedItem?.DisplayText != null
? $"LibreAutomate - {filesPanel.SelectedItem.DisplayText}"
: "LibreAutomate"
);
};