Sort out package of examples
[staging/xdg-launcher.git] / package / webbrowser / runxdg.toml
1 [application]
2 # role: identifier for WindowManager (used in layers.json)
3 # e.g. role = "WebBrowser"
4 role = "webbrowser"
5
6 # launch by "POSIX"(fork/exec), "AFM_DBUS"(afm via dbus),  "AFM_WEBSOCKET"(afm via websockt)
7 method = "POSIX"
8
9 # path: path to the executable
10 # e.g.
11 #   path = "/usr/bin/chromium"
12 path = "/usr/bin/chromium"
13
14 # params: arguments of the excecutable
15 # e.g.
16 #   params = [
17 #     "--mus",
18 #     "--no-sandbox",
19 #     "--window-size=1080,1488",
20 #     "--ozone-platform=wayland",
21 #     "<URL>"
22 #   ]
23 params = [
24   "--mus",
25   "--no-sandbox",
26   "--single-process",
27   "--window-size=1080,1488",
28   "--ozone-platform=wayland",
29   "--touch-events=enabled",
30   "https://maps.google.com/maps"
31 ]