blob: 4dd721b6f607d954a0a3f1f231d322afa5fadcb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# %% %
# %a appid
# %c content
# %D datadir
# %H height
# %h homedir
# %I icondir
# %m mime-type
# %n name
# %p plugins
# %P port
# %R readyfd
# %r rootdir
# %S secret
# %W width
#-----------------
mode local
#-----------------
text/html
/usr/bin/afb-daemon --mode=local --readyfd=%R --alias=/icons:%I --port=%P --rootdir=%r --token=%S --sessiondir=%D/.afb-daemon
/usr/bin/web-runtime http://localhost:%P/%c?token=%S
application/x-executable
%r/%c
text/vnd.qt.qml
/usr/bin/qt5/qmlscene -fullscreen -I %r -I %r/imports %r/%c
#-----------------
mode remote
#-----------------
text/html
/usr/bin/afb-daemon --mode=remote --readyfd=%R --alias=/icons:%I --port=%P --rootdir=%r --token=%S --sessiondir=%D/.afb-daemon
http://%%h:%P/%c?token=%S
|