How to turn off the root menu entirely #3009
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can overwrite the mousebind for Here's our default configuration: <labwc_config>
<mouse>
<context name="Root">
<mousebind button="Left" action="Press">
<action name="ShowMenu" menu="root-menu" />
</mousebind>
</context>
</mouse>
</labwc_config> ...and you can disable the root menu with this: <labwc_config>
<mouse>
<context name="Root">
<mousebind button="Left" action="Press" />
</context>
</mouse>
</labwc_config>
You use |
Beta Was this translation helpful? Give feedback.
-
I'm curious now. If you run with From a design perspective, my initial reaction is that it would make sense for wlgreet layer-shell surfaces to fill the entire output (all outputs) to prevent pointer interactions with anything other than wlgreet. |
Beta Was this translation helpful? Give feedback.
You can overwrite the mousebind for
Root
mouse context with an empty action list.Here's our default configuration:
...and you can disable the root menu with this: