如何使Gnome Shell扩展查询更改

时间:2013-09-26 16:07:22

标签: javascript gnome-3 gnome-shell-extensions

我一直在与可怕的Gnome API文档作斗争并提出了这个扩展:

const St = imports.gi.St;
const Main = imports.ui.main;
const Tweener = imports.ui.tweener;
const GLib = imports.gi.GLib;

let label;

function init() {
    label = new St.Bin({ style_class: 'panel-label' });

    let stuff = GLib.spawn_command_line_sync("cat /home/user/temp/hello")[1].toString();
    let text = new St.Label({ text: stuff });

    label.set_child(text);
}

function enable() {
    Main.panel._rightBox.insert_child_at_index(label, 0);
}

function disable() {
    Main.panel._rightBox.remove_child(label);
}

这应该读取hello文件中的内容并将其显示在顶部面板中。但是,如果我更改hello文件的内容,我必须重新启动Gnome才能显示该新内容。现在,肯定有一种方法可以动态地执行此操作,但我在文档中找不到任何内容。面板中的消息基本上应始终镜像文件中的任何内容。任何想法如何做到这一点?

2 个答案:

答案 0 :(得分:4)

您需要为Gio.File文件获取hello句柄,然后monitor

let helloFile = Gio.File.new_for_path('/home/user/temp/hello');
let monitor = helloFile.monitor(Gio.FileMonitorFlags.NONE, null);
monitor.connect('changed', function (file, otherFile, eventType) {
    // change your UI here
});

答案 1 :(得分:0)

这对我有用。它将每30秒刷新一次标签值。

  • 添加以下导入

    const Mainloop = imports.mainloop;

  • 在init方法中

    Mainloop.timeout_add(30000, function () { 
     let stuff = GLib.spawn_command_line_sync("your_command")[1].toString();
     let label = new St.Label({ text: stuff });
     button.set_child(label);return true});