Files
dash-to-panel/schemas/org.gnome.shell.extensions.dash-to-panel.gschema.xml

132 lines
6.0 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gnome-shell-extensions">
2016-12-23 11:32:23 -05:00
<enum id='org.gnome.shell.extensions.dash-to-panel.clickAction'>
<value value='0' nick='SKIP'/>
<value value='1' nick='MINIMIZE'/>
<value value='2' nick='LAUNCH'/>
<value value='3' nick='CYCLE'/>
<value value='4' nick='CYCLE-MIN'/>
<value value='5' nick='QUIT'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.statusAreaPosition'>
<value value='0' nick='NATURAL'/>
<value value='1' nick='STATUSLEFT'/>
<value value='2' nick='STATUSRIGHT'/>
</enum>
<!-- this is mean to Match StSide. LEFT and RIGHT actual position in reversed in
rtl languages -->
<enum id='org.gnome.shell.extensions.dash-to-panel.panelPosition'>
<value value='0' nick='BOTTOM'/>
<value value='1' nick='TOP'/>
</enum>
<enum id='org.gnome.shell.extensions.dash-to-panel.dotPosition'>
<value value='0' nick='BOTTOM'/>
<value value='1' nick='TOP'/>
</enum>
2016-12-23 11:32:23 -05:00
<schema path="/org/gnome/shell/extensions/dash-to-panel/" id="org.gnome.shell.extensions.dash-to-panel">
<key name="panel-position" enum="org.gnome.shell.extensions.dash-to-panel.panelPosition">
<default>'BOTTOM'</default>
<summary>Panel position</summary>
<description>Panel is shown on the Bottom or Top of the screen.</description>
</key>
<key type="i" name="panel-size">
<default>48</default>
<summary>Panel size</summary>
<description>Set the size of the panel.</description>
</key>
<key name="dot-position" enum="org.gnome.shell.extensions.dash-to-panel.dotPosition">
<default>'BOTTOM'</default>
<summary>Dot position</summary>
<description>Running indicators are shown on the Bottom or Top of the screen.</description>
</key>
<key name="location-clock" enum="org.gnome.shell.extensions.dash-to-panel.statusAreaPosition">
<default>'STATUSLEFT'</default>
2016-12-25 16:24:01 -05:00
<summary>Location of the clock</summary>
<description>Set the location of the clock on the taskbar</description>
</key>
<key type="b" name="show-show-apps-button">
<default>true</default>
<summary>Show applications button</summary>
<description>Show appplications button in the dash</description>
</key>
<key type="b" name="animate-show-apps">
<default>true</default>
<summary>Animate Show Applications from the desktop</summary>
<description>Animate Show Applications from the desktop</description>
</key>
2017-01-02 21:36:09 -05:00
<key type="b" name="show-activities-button">
<default>false</default>
<summary>Show activities button</summary>
<description>Show activities button on the left hand side of the taskbar</description>
</key>
<key type="b" name="isolate-workspaces">
<default>false</default>
<summary>Provide workspace isolation</summary>
2017-01-02 21:36:09 -05:00
<description>Dash shows only windows from the current workspace</description>
</key>
<key type="b" name="customize-click">
<default>true</default>
<summary>Customize click behaviour</summary>
<description>Customize action on various mouse events</description>
</key>
<key type="b" name="minimize-shift">
<default>true</default>
<summary>Minimize on shift+click</summary>
</key>
<key type="b" name="activate-single-window">
<default>true</default>
<summary>Activate only one window</summary>
</key>
2016-12-23 11:32:23 -05:00
<key name="click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'CYCLE-MIN'</default>
<summary>Action when clicking on a running app</summary>
<description>Set the action that is executed when clicking on the icon of a running application</description>
</key>
2016-12-23 11:32:23 -05:00
<key name="shift-click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'MINIMIZE'</default>
2016-12-31 08:24:23 -05:00
<summary>Action when shift+clicking on a running app</summary>
<description>Set the action that is executed when shift+clicking on the icon of a running application</description>
</key>
2016-12-23 11:32:23 -05:00
<key name="middle-click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'LAUNCH'</default>
<summary>Action when clicking on a running app</summary>
<description>Set the action that is executed when middle-clicking on the icon of a running application</description>
</key>
2016-12-23 11:32:23 -05:00
<key name="shift-middle-click-action" enum="org.gnome.shell.extensions.dash-to-panel.clickAction">
<default>'LAUNCH'</default>
<summary>Action when clicking on a running app</summary>
<description>Set the action that is executed when shift+middle-clicking on the icon of a running application</description>
</key>
<key type="i" name="tray-size">
<default>0</default>
<summary>Tray font size</summary>
<description>Set the size of the tray font. (0 for default)</description>
</key>
<key type="i" name="leftbox-size">
<default>0</default>
<summary>Leftbox font size</summary>
<description>Set the size of the leftBox font. (0 for default)</description>
</key>
<key type="i" name="appicon-margin">
<default>8</default>
<summary>App icon margin</summary>
<description>Set the margin for application icons in the embedded dash.</description>
</key>
<key type="i" name="tray-padding">
<default>6</default>
2017-01-04 09:11:09 -05:00
<summary>Tray item padding</summary>
<description>Set the size of the tray padding. (-1 for default)</description>
</key>
<key type="i" name="leftbox-padding">
<default>6</default>
2017-01-04 09:11:09 -05:00
<summary>Leftbox item padding</summary>
<description>Set the size of the leftBox padding. (-1 for default)</description>
</key>
<key type="i" name="status-icon-padding">
<default>6</default>
<summary>Status icon padding</summary>
<description>Set the size of the aggregate (status) menu icon padding. (-1 for default)</description>
</key>
</schema>
</schemalist>