mirror of
https://gitlab.gnome.org/julianschacher/top-bar-organizer.git
synced 2025-10-27 07:09:07 +00:00
This is only the core extension logic for now, settings UI still needs to follow. The logic only acts on the indicator container, not the indicator itself, meaning that e.g. a screen recording indicator, which is hidden on the indicator level, can be forcefully hidden, but not forcefully shown. Because of that and because forcefully hiding it breaks controls for screen recording, a potential settings implementation should exclude visiblity controls for some elements like e.g. the screen recording indicator.
26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<schemalist>
|
|
<schema id="org.gnome.shell.extensions.top-bar-organizer" path="/org/gnome/shell/extensions/top-bar-organizer/">
|
|
<key name="left-box-order" type="as">
|
|
<description>Order of items in the left box of the top bar.</description>
|
|
<default>[]</default>
|
|
</key>
|
|
<key name="center-box-order" type="as">
|
|
<description>Order of items in the center box of the top bar.</description>
|
|
<default>[]</default>
|
|
</key>
|
|
<key name="right-box-order" type="as">
|
|
<description>Order of items in the right box of the top bar.</description>
|
|
<default>[]</default>
|
|
</key>
|
|
<key name="hide" type="as">
|
|
<description>Top bar items to (forcefully) hide.</description>
|
|
<default>[]</default>
|
|
</key>
|
|
<key name="show" type="as">
|
|
<description>Top bar items to (forcefully) show.</description>
|
|
<default>[]</default>
|
|
</key>
|
|
</schema>
|
|
</schemalist>
|