diff options
Diffstat (limited to 'runxdg.toml')
-rw-r--r-- | runxdg.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/runxdg.toml b/runxdg.toml new file mode 100644 index 0000000..bd377b0 --- /dev/null +++ b/runxdg.toml @@ -0,0 +1,18 @@ +[application] +# role: identifier for WindowManager (used in layers.json) +# e.g. role = "WebBrowser" +role = "WebBrowser" + +# launch by "POSIX"(fork/exec), "AFM_DBUS"(afm via dbus), "AFM_WEBSOCKET"(afm via websockt) +method = "POSIX" + +# path: path to the executable +# e.g. +# path = "/usr/bin/chromium" +path = "/opt/chromium53/chrome" + +params = [ + "--in-process-gpu", + "--user-data-dir=/opt/chromium53/workdir" +] + |