I'm writing an extension for GNOME Shell to check whether VPN is connected with this command:
ifconfig -a | grep tun
This is my extension.js file:
const St = imports.gi.St;
const Main = imports.ui.main;
const Mainloop = imports.mainloop;
let panelOutput, panelOutputText, timeout;
function panelOutputGenerator(){
// I want to execute this command here and get the result:
// 'ifconfig -a | grep tun'
let commandResult = 'string of result that terminal is returned';
let connectionStatus = (commandResult!='')? 'VPN is Enabled' : 'Normal';
panelOutputText.set_text(connectionStatus);
return true;
}
function init(){
panelOutput = new St.Bin({
style_class: 'panel-button',
reactive: true,
can_focus: false,
x_fill: true,
y_fill: false,
track_hover: false
});
panelOutputText = new St.Label({
text: 'Normal',
style_class: 'iceLabel'
});
panelOutput.set_child(panelOutputText);
}
function enable(){
Main.panel._rightBox.insert_child_at_index(panelOutput,0);
timeout = Mainloop.timeout_add_seconds(1.0,panelOutputGenerator);
}
function disable() {
Mainloop.source_remove(timeout);
Main.panel._rightBox.remove_child(panelOutput);
}
Tried these and none of them worked:
const Util = imports.misc.util;
let commandResult = Util.spawn(['/bin/bash', '-c', "ifconfig -a | grep tun"]);
const Util = imports.misc.util;
let commandResult = Util.spawnCommandLine('ifconfig -a | grep tun');
const GLib = imports.gi.GLib;
let [res, out] = GLib.spawn_sync(null,['ifconfig','-a','|','grep','tun'],null,null,null);
et commandResult = res.toString();
What should I do to execute that command and get the result?