diff options
Diffstat (limited to 'recipes-demo/cluster-windowmanager-conf')
4 files changed, 0 insertions, 140 deletions
diff --git a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/areas.json b/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/areas.json deleted file mode 100644 index 90180dcaf..000000000 --- a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/areas.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "areas": [ - { - "name": "fullscreen", - "rect": { - "x": 0, - "y": 0, - "w": 1920, - "h": 1080 - } - }, - { - "name": "normal.full", - "rect": { - "x": 640, - "y": 180, - "w": 640, - "h": 720 - } - }, - { - "name": "restriction.normal", - "rect": { - "x": 640, - "y": 180, - "w": 640, - "h": 720 - } - }, - { - "name": "on_screen", - "rect": { - "x": 640, - "y": 180, - "w": 640, - "h": 720 - } - } - ] -} diff --git a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/layers.json b/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/layers.json deleted file mode 100644 index 5c6a5b35d..000000000 --- a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/layers.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "description": "Layer mapping", - "mappings": [ - { - "name": "BackGroundLayer", - "role" : "receiver", - "id_range_begin": 0, - "id_range_end": 0, - "comment": "Work Around: This is a special fallback layer that not stopping wayland event loop." - }, - { - "name": "FarHomeScreen", - "role": "homescreen", - "id_range_begin": 100, - "id_range_end": 199, - "comment": "FarHomeScreen is the part of HomeScreen. The z order of this layer is lower than NearHomeScreen" - }, - { - "name": "Apps", - "role": "receiver|fallback", - "id_range_begin": 1000, - "id_range_end": 2999, - "comment": "Application layer" - }, - { - "name": "Popup", - "role": "popup*", - "id_range_begin": 4000, - "id_range_end": 4999, - "comment": "This layer is for popup application layer" - }, - { - "name": "Restriction", - "role": "restriction", - "id_range_begin": 5000, - "id_range_end": 5999, - "comment": "This layer is for restriction notification on driving. This is used by restriction role" - }, - { - "name": "OnScreen", - "role": "^on_screen.*", - "id_range_begin": 6000, - "id_range_end": 6999, - "comment": "System notification layer. For example, on_screen_low_battery_alert to notify user" - } - ] -} diff --git a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/roles.db b/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/roles.db deleted file mode 100644 index 13702144a..000000000 --- a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf/roles.db +++ /dev/null @@ -1,34 +0,0 @@ -{ - "roles":[ - { - "category": "homescreen", - "role": "homescreen", - "area": "fullscreen", - "layer": "homescreen", - }, - { - "category": "debug", - "role": "receiver | fallback", - "area": "normal.full", - "layer": "apps", - }, - { - "category": "restriction", - "role": "restriction", - "area": "restriction.normal", - "layer": "restriction", - }, - { - "category": "pop_up", - "role": "on_screen | on_screen_phone", - "area": "on_screen", - "layer": "on_screen", - }, - { - "category": "system_alert", - "role": "system_alert", - "area": "on_screen", - "layer": "on_screen", - } - ] -} diff --git a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf_1.0.bb b/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf_1.0.bb deleted file mode 100644 index f8cf9b928..000000000 --- a/recipes-demo/cluster-windowmanager-conf/cluster-windowmanager-conf_1.0.bb +++ /dev/null @@ -1,19 +0,0 @@ -SUMMARY = "Cluster demo windowmanager configuration" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" - -SRC_URI = "file://layers.json \ - file://areas.json \ - file://roles.db \ -" - -do_compile[noexec] = "1" - -do_install() { - install -d ${D}${sysconfdir}/xdg/windowmanager - install -m 0644 ${WORKDIR}/layers.json ${D}${sysconfdir}/xdg/windowmanager/layers.json - install -m 0644 ${WORKDIR}/areas.json ${D}${sysconfdir}/xdg/windowmanager/areas.json - install -m 0644 ${WORKDIR}/roles.db ${D}${sysconfdir}/xdg/windowmanager/roles.db -} - -#FILES:${PN} += "${sysconfdir}/*" |