mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +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
16 lines
326 B
Plaintext
16 lines
326 B
Plaintext
<runtime ram="16M" caps="500" binary="init" config="wm.config">
|
|
|
|
<requires> <nitpicker/> <timer/> </requires>
|
|
|
|
<provides> <nitpicker/> <rom/> <report/> </provides>
|
|
|
|
<content>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="report_rom"/>
|
|
<rom label="wm"/>
|
|
<rom label="init"/>
|
|
<rom label="wm.config"/>
|
|
</content>
|
|
|
|
</runtime>
|