Updated Tasker and ADB commands (markdown)

zobnin
2023-07-08 10:25:22 +03:00
parent 6f14356ee2
commit 9a9fd05e3b

@@ -41,27 +41,6 @@ The following commands are available:
* `add_widget:NAME:[position]`
* `remove_widget:position`
Also AIO Launcher 2.7.0 includes so-called custom widget. By itself, it does not show anything, but any text can be output to it by analogy with commands (instead of "cmd" you must write "widget"). Example:
```
adb shell am broadcast -a ru.execbit.aiolauncher.COMMAND --es widget 'Text'
```
In folded form, widget shows the first line of text. But you can specify your own text for the minimized state. Example:
```
adb shell am broadcast -a ru.execbit.aiolauncher.COMMAND --es widget_alt 'Text'
```
Widget supports many HTML tags:
```
First line<br/>Second line
<b>Bold Line</b><br/><i>Oblique Line</i>
<font color="red">Red text</font>
<span style="background-color: #00FF00">Text on green background</span>
```
To prevent third-party (malicious) applications from gaining the ability to control the launcher and write text to the widget, you can set a password to access the launcher. This password must be specified each time a command or text is sent:
```