diff options
author | monsta <[email protected]> | 2016-03-02 14:44:15 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-03-02 14:49:11 +0300 |
commit | e44f2e847ddb5db5b6944f6c2f993981adbd3ad4 (patch) | |
tree | 871df644b8dbd6d4861d42421e1b03790ff3c490 /src/org.mate.system-monitor.gschema.xml.in | |
parent | 2e5e07b81f18fa4b3cfa8dfdbb08d716d58845ce (diff) | |
download | mate-system-monitor-e44f2e847ddb5db5b6944f6c2f993981adbd3ad4.tar.bz2 mate-system-monitor-e44f2e847ddb5db5b6944f6c2f993981adbd3ad4.tar.xz |
disks: implement saving and loading width and visibility of columns
adapted from
https://git.gnome.org/browse/gnome-system-monitor/commit/?id=f589439a966151b2589bca21a4d6b40455eb201a
with necessary changes from https://github.com/mate-desktop/mate-system-monitor/commit/eebc190a5aeb6ebaf5c3a868b68434679adddc74
Diffstat (limited to 'src/org.mate.system-monitor.gschema.xml.in')
-rw-r--r-- | src/org.mate.system-monitor.gschema.xml.in | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/org.mate.system-monitor.gschema.xml.in b/src/org.mate.system-monitor.gschema.xml.in index 063ffa4..c69bee0 100644 --- a/src/org.mate.system-monitor.gschema.xml.in +++ b/src/org.mate.system-monitor.gschema.xml.in @@ -353,6 +353,62 @@ <default>[ 0 ]</default> <summary>Disk view columns order</summary> </key> + <key name="col-0-width" type="i"> + <default>100</default> + <summary>Width of disk view 'Device' column</summary> + </key> + <key name="col-0-visible" type="b"> + <default>true</default> + <summary>Show disk view 'Device' column on startup</summary> + </key> + <key name="col-1-width" type="i"> + <default>100</default> + <summary>Width of disk view 'Directory' column</summary> + </key> + <key name="col-1-visible" type="b"> + <default>true</default> + <summary>Show disk view 'Directory' column on startup</summary> + </key> + <key name="col-2-width" type="i"> + <default>50</default> + <summary>Width of disk view 'Type' column</summary> + </key> + <key name="col-2-visible" type="b"> + <default>true</default> + <summary>Show disk view 'Type' column on startup</summary> + </key> + <key name="col-3-width" type="i"> + <default>80</default> + <summary>Width of disk view 'Total' column</summary> + </key> + <key name="col-3-visible" type="b"> + <default>true</default> + <summary>Show disk view 'Total' column on startup</summary> + </key> + <key name="col-4-width" type="i"> + <default>80</default> + <summary>Width of disk view 'Free' column</summary> + </key> + <key name="col-4-visible" type="b"> + <default>true</default> + <summary>Show disk view 'Free' column on startup</summary> + </key> + <key name="col-5-width" type="i"> + <default>80</default> + <summary>Width of disk view 'Available' column</summary> + </key> + <key name="col-5-visible" type="b"> + <default>true</default> + <summary>Show disk view 'Available' column on startup</summary> + </key> + <key name="col-6-width" type="i"> + <default>300</default> + <summary>Width of disk view 'Used' column</summary> + </key> + <key name="col-6-visible" type="b"> + <default>true</default> + <summary>Show disk view 'Used' column on startup</summary> + </key> </schema> <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.system-monitor.memmapstree" path="/org/mate/system-monitor/memmapstree/"> <key name="sort-col" type="i"> |