mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-05 21:44:12 +00:00
c6fd0055b1
This commit moves the window layouter and window decorator into dedicated packages that can now be combined with the "wm" server at runtime and restarted/reconfigured/swapped-out independently. To use the window manager, one must start the 'wm', 'window_layouter', and one of the 'motif_decorator' or 'themed_decorator' subsystems. Fixes #3024
12 lines
617 B
Plaintext
12 lines
617 B
Plaintext
<launcher pkg="window_layouter">
|
|
<route>
|
|
<service name="ROM" label="window_list"> <child name="wm"/> </service>
|
|
<service name="ROM" label="focus_request"> <child name="wm"/> </service>
|
|
<service name="ROM" label="hover"> <child name="wm"/> </service>
|
|
<service name="ROM" label="decorator_margins"> <child name="wm"/> </service>
|
|
<service name="ROM" label="rules"> <child name="wm"/> </service>
|
|
<service name="Report"> <child name="wm"/> </service>
|
|
<service name="Nitpicker"> <child name="wm"/> </service>
|
|
</route>
|
|
</launcher>
|