aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulie Jeongeun Kim <jkim@igalia.com>2018-10-31 19:53:57 +0900
committerJosé Dapena Paz <jose.dapena@lge.com>2018-11-02 11:16:19 +0100
commit30dbea75557525770346248282468d2b3e56a120 (patch)
tree23e2672f14e68cc6981c2e3ac2a66255b7dadc65
parent47abfca3e84eaedd49987f0ce3799d4bf64cfc45 (diff)
Update the role name from WebBrowser to browser
It updates the role name to browser to sync with the role name from layers.json and the application name to sync with role name because runxdg compares it. [SPEC-1889] Chromium is initially hidden when launched. https://jira.automotivelinux.org/browse/SPEC-1889
-rw-r--r--conf.d/wgt/config.xml.in4
-rw-r--r--runxdg.toml3
2 files changed, 4 insertions, 3 deletions
diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in
index 0a867c2..a4c362a 100644
--- a/conf.d/wgt/config.xml.in
+++ b/conf.d/wgt/config.xml.in
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<widget xmlns="http://www.w3.org/ns/widgets" id="@PROJECT_NAME@" version="@PROJECT_VERSION@">
- <name>@PROJECT_NAME@</name>
+<widget xmlns="http://www.w3.org/ns/widgets" id="browser" version="@PROJECT_VERSION@">
+ <name>browser</name>
<icon src="@PROJECT_ICON@"/>
<content src="@WIDGET_ENTRY_POINT@" type="@WIDGET_TYPE@"/>
<description>@PROJECT_DESCRIPTION@</description>
diff --git a/runxdg.toml b/runxdg.toml
index bd377b0..c5f426e 100644
--- a/runxdg.toml
+++ b/runxdg.toml
@@ -1,7 +1,8 @@
[application]
# role: identifier for WindowManager (used in layers.json)
# e.g. role = "WebBrowser"
-role = "WebBrowser"
+#role = "WebBrowser"
+role = "browser"
# launch by "POSIX"(fork/exec), "AFM_DBUS"(afm via dbus), "AFM_WEBSOCKET"(afm via websockt)
method = "POSIX"