Dconf: Difference between revisions

From IoWiki
Jump to navigation Jump to search
(Created, with first entry for hiding the Pluma tab bar.)
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
Important gsettings values, mostly for [[Callisto Desktop]].
Important gsettings values, mostly for [[Callisto Desktop]].
==Transferring settings==
Save dconf values and load them into another environment. For example, MATE Terminal settings:
{{code|inline=y|lang=bash|dconf dump /org/mate/terminal/ > mate-terminal.dconf}}
{{code|inline=y|lang=bash|dconf load /org/mate/terminal/ < mate-terminal.dconf}}
==Application settings==


===org.mate.pluma.show-single-tab===
===org.mate.pluma.show-single-tab===
Line 6: Line 16:
** Do not show a tab bar in Pluma when there is a "single tab" (aka no tabs). This should be the state at all times.
** Do not show a tab bar in Pluma when there is a "single tab" (aka no tabs). This should be the state at all times.
* '''TODO''': Patch Pluma to prevent the creation of tabbed document windows, and the existence of empty container windows with no open documents.
* '''TODO''': Patch Pluma to prevent the creation of tabbed document windows, and the existence of empty container windows with no open documents.
===org.mate.session.required-components===
Setting the below value to an empty string configures MATE not to launch a panel. Callisto Desktop uses an FvwmButtonBar that does most of what mate-panel does.
{{code|inline=y|lang=bash|gsettings set org.mate.session.required-components panel ''}}
Theoretically, setting the windowmanager key to 'fvwm' from the default 'marco' should replace the MATE window manager with FVWM, but it does not work:
{{code|inline=y|lang=bash|gsettings set org.mate.session.required-components windowmanager 'fvwm'}}
Instead, we add an {{code|inline=y|lang=bash|fvwm --replace}} startup application entry.

Latest revision as of 02:09, 19 July 2025

Important gsettings values, mostly for Callisto Desktop.

Transferring settings

Save dconf values and load them into another environment. For example, MATE Terminal settings:

dconf dump /org/mate/terminal/ > mate-terminal.dconf

dconf load /org/mate/terminal/ < mate-terminal.dconf

Application settings

org.mate.pluma.show-single-tab

  • Value: false
    • Do not show a tab bar in Pluma when there is a "single tab" (aka no tabs). This should be the state at all times.
  • TODO: Patch Pluma to prevent the creation of tabbed document windows, and the existence of empty container windows with no open documents.

org.mate.session.required-components

Setting the below value to an empty string configures MATE not to launch a panel. Callisto Desktop uses an FvwmButtonBar that does most of what mate-panel does.

gsettings set org.mate.session.required-components panel ''

Theoretically, setting the windowmanager key to 'fvwm' from the default 'marco' should replace the MATE window manager with FVWM, but it does not work:

gsettings set org.mate.session.required-components windowmanager 'fvwm'

Instead, we add an fvwm --replace startup application entry.