码迷,mamicode.com
首页 > 其他好文 > 详细

Gconf与Gsettings的简介、及gsettings的具体使用案例

时间:2014-12-11 20:57:24      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   io   ar   color   使用   sp   for   

/*********************************************************************
 * Author  : Samson
 * Date    : 12/11/2014
 * Test platform:
 *              3.13.0-24-generic
 *              GNU bash, 4.3.11(1)-release 
 * *******************************************************************/

GConf was a system used by theGNOME desktop environment for storingconfiguration settings for the desktop and applications. It is similar to the Windows Registry.
Gconf是一个存储GNOME桌面环境配置的一个系统,以方便桌面和应用程序的配置,是后台运行的。可以理解为是一个类似于windows下的注册表的一个东西;
而gsettings是对GConf后台的读取和设置;
现就举一个例子:
在面板中使用了panel-launchers的key,那么如何得到这个的值呢?
第一步:
ufo@ufo:~$ gsettings  list-schemas | grep cinnamon
可查找到cinnamon对应的方案为org.cinnamon
第二步,在此方案中查找key的值:
ufo@ufo:~$ gsettings  list-recursively org.cinnamon | grep -w "panel-launchers"
org.cinnamon enabled-applets [‘panel1:left:0:menu@cinnamon.org:0‘, ‘panel1:left:1:show-desktop@cinnamon.org:1‘, ‘panel1:left:2:panel-launchers@cinnamon.org:2‘, ‘panel1:left:3:windowPreviewWindowList@dalcde:3‘, ‘panel1:right:0:notifications@cinnamon.org:4‘, ‘panel1:right:1:settings@cinnamon.org:5‘, ‘panel1:right:2:removable-drives@cinnamon.org:6‘, ‘panel1:right:3:bluetooth@cinnamon.org:7‘, ‘panel1:right:4:network@cinnamon.org:8‘, ‘panel1:right:5:sound@cinnamon.org:9‘, ‘panel1:right:6:power@cinnamon.org:10‘, ‘panel1:right:7:systray@cinnamon.org:11‘, ‘panel1:right:8:cpu-monitor@iscas.as.cn:12‘, ‘panel1:right:9:calendar@cinnamon.org:13‘, ‘panel1:right:10:windows-quick-list@cinnamon.org:14‘]
org.cinnamon panel-launchers [‘firefox.desktop‘, ‘gnome-screenshot.desktop‘, ‘gnome-terminal.desktop‘, ‘thunderbird.desktop‘, ‘fcitx-configtool.desktop‘, ‘cinnamon-custom-launcher-3.desktop‘]
org.cinnamon panel-launchers-draggable true

可看出panel-launchers的值。

Ref:



Gconf与Gsettings的简介、及gsettings的具体使用案例

标签:des   style   http   io   ar   color   使用   sp   for   

原文地址:http://blog.csdn.net/yygydjkthh/article/details/41870991

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!