mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	Some distro packages install the example config at /etc/xdg/labwc/rc.xml and thus users of those packages were having a gap 10 setting by default. Lets remove the gap from the example config to match our intended default.
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			929 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			929 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0"?>
 | 
						|
 | 
						|
<!--
 | 
						|
  This is a very simple config file with many options missing. For a complete
 | 
						|
  set of options with comments, see docs/rc.xml.all
 | 
						|
-->
 | 
						|
 | 
						|
<labwc_config>
 | 
						|
 | 
						|
  <theme>
 | 
						|
    <name></name>
 | 
						|
    <cornerRadius>8</cornerRadius>
 | 
						|
    <font name="sans" size="10" />
 | 
						|
  </theme>
 | 
						|
 | 
						|
  <keyboard>
 | 
						|
    <default />
 | 
						|
    <!-- Use a different terminal emulator -->
 | 
						|
    <keybind key="W-Return">
 | 
						|
      <action name="Execute" command="foot" />
 | 
						|
    </keybind>
 | 
						|
    <!--
 | 
						|
      Remove a previously defined keybind
 | 
						|
      A shorter alternative is <keybind key="W-F4" />
 | 
						|
    -->
 | 
						|
    <keybind key="W-F4">
 | 
						|
      <action name="None" />
 | 
						|
    </keybind>
 | 
						|
  </keyboard>
 | 
						|
 | 
						|
  <mouse>
 | 
						|
    <default />
 | 
						|
    <!-- Show a custom menu on desktop right click -->
 | 
						|
    <context name="Root">
 | 
						|
      <mousebind button="Right" action="Press">
 | 
						|
        <action name="ShowMenu" menu="some-custom-menu" />
 | 
						|
      </mousebind>
 | 
						|
    </context>
 | 
						|
  </mouse>
 | 
						|
 | 
						|
</labwc_config>
 |