我目前正在 Gjs 上构建一个简单的应用程序,它应该会更改我的 gnome-shell 的背景图像。可以找到有关如何使用 gsettings -tool 完成此操作的解决方案 here

因为我想围绕它构建一个桌面应用程序,所以我想使用 Gio 的 org.gnome.desktop.background.picture-uri -class 更改 GSettings -key。但是使用 set_X() -method 不会改变键的值。

这是我更改 gsettings 值的代码:

var gio = imports.gi.Gio;

// Get the GSettings-object for the background-schema:
var background = new gio.Settings({schema: "org.gnome.desktop.background"});

// Read the current Background-Image:
print( "Current Background-Image: "+background.get_string("picture-uri") );

if (background.is_writable("picture-uri")){
    // Set a new Background-Image (should show up immediately):
    if (background.set_string("picture-uri", "file:///path/to/some/pic.jpg")){
        print("Success!");
    }
    else throw "Couldn't set the key!";
} else throw "The key is not writable";

读取值确实按预期工作, is_writable() -method 返回 true 并且 set_string() -method 也返回 true

我已经检查过我没有处于“延迟应用”模式并且 key 有一个 GVariantType 字符串,所以 set_string() 方法应该可以工作。

使用普通的 gsettings 命令行工具(如链接帖子中所述)工作正常。

我不知道问题出在哪里,有什么地方可以查找日志或其他东西吗?

最佳答案

在这里没有得到任何回应后,我 asked the same question on the gjs-mailing list

结果表明,当我的脚本退出时,对 dconf 的写入尚未在磁盘上,因此它们从未真正应用过。

解决方案是在 g_settings_sync() 函数之后立即调用 set_string() function ( JsDoc ),以确保所有写入都已完成。

if (background.set_string("picture-uri", "file:///path/to/some/pic.jpg")){
    gio.Settings.sync()
    print("Success!");
}

感谢 Johan Dahlin 和 his answer

关于javascript - 无法使用 GSettings 更改 dconf-entry,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9985140/

10-11 22:06