1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
const Gtk = imports.gi.Gtk;
const Gio = imports.gi.Gio;
const Gdk = imports.gi.Gdk;
const GLib = imports.gi.GLib;
const Clutter = imports.gi.Clutter;
const Lang = imports.lang;
const Gettext = imports.gettext.domain('system-monitor');
const _ = Gettext.gettext;
const N_ = function(e) { return e; };
let extension = imports.misc.extensionUtils.getCurrentExtension();
let convenience = extension.imports.convenience;
let Compat = extension.imports.compat;
let Schema;
function init() {
convenience.initTranslations();
Schema = convenience.getSettings();
}
String.prototype.capitalize = function(){
return this.replace( /(^|\s)([a-z])/g , function(m,p1,p2){ return p1+p2.toUpperCase(); } );
};
function color_to_hex(color){
output = N_("#%02x%02x%02x%02x").format(color.red * 255, color.green * 255,
color.blue * 255, color.alpha * 255);
return output;
}
function check_sensors(sensor_type){
let inputs = [sensor_type+'1_input',sensor_type+'2_input',sensor_type+'3_input'];
let sensor_path = '/sys/class/hwmon/';
let sensor_list = [];
let string_list = [];
let test;
for (let j=0; j < 6; j++){
for (let k=0; k < inputs.length; k++){
test = sensor_path + 'hwmon' + j + '/' + inputs[k];
if(!GLib.file_test(test,1<<4)){
test = sensor_path + 'hwmon' + j + '/device/' + inputs[k];
if(!GLib.file_test(test,1<<4)){
continue;
}
}
let sensor = test.substr(0, test.lastIndexOf('/'));
let result = GLib.file_get_contents(sensor + '/name');
let label;
if (result[0]){
label = N_('' + result[1]).split('\n')[0];
}
string_list.push(label.capitalize() + ' - ' + inputs[k].split('_')[0].capitalize());
sensor_list.push(test);
}
}
return [sensor_list, string_list];
};
const ColorSelect = new Lang.Class({
Name: 'SystemMonitor.ColorSelect',
_init: function(name) {
this.label = new Gtk.Label({label: name + _(":")});
this.picker = new Gtk.ColorButton();
this.actor = new Gtk.HBox({spacing:5});
this.actor.add(this.label);
this.actor.add(this.picker);
this.picker.set_use_alpha(true);
},
set_value: function(value){
let clutterColor = Compat.color_from_string(value);
let color = new Gdk.RGBA();
let ctemp = [clutterColor.red,clutterColor.green,clutterColor.blue,clutterColor.alpha/255];
color.parse('rgba(' + ctemp.join(',') + ')');
this.picker.set_rgba(color);
}
});
const IntSelect = new Lang.Class({
Name: 'SystemMonitor.IntSelect',
_init: function(name) {
this.label = new Gtk.Label({label: name + _(":")});
this.spin = new Gtk.SpinButton();
this.actor = new Gtk.HBox();
this.actor.add(this.label);
this.actor.add(this.spin);
this.spin.set_numeric(true);
},
set_args: function(minv, maxv, incre, page){
this.spin.set_range(minv, maxv);
this.spin.set_increments(incre, page);
},
set_value: function(value){
this.spin.set_value(value);
}
});
const Select = new Lang.Class({
Name: 'SystemMonitor.Select',
_init: function(name) {
this.label = new Gtk.Label({label: name + _(":")});
//this.label.set_justify(Gtk.Justification.RIGHT);
this.selector = new Gtk.ComboBoxText();
this.actor = new Gtk.HBox({spacing:5});
this.actor.add(this.label);
this.actor.add(this.selector);
},
set_value: function(value){
this.selector.set_active(value);
},
add: function(items){
items.forEach(Lang.bind(this, function(item){
this.selector.append_text(item);
}));
}
});
function set_enum(combo, schema, name){
Schema.set_enum(name, combo.get_active());
}
function set_color(color, schema, name){
Schema.set_string(name, color_to_hex(color.get_rgba()))
}
function set_string(combo, schema, name, _slist){
Schema.set_string(name, _slist[combo.get_active()]);
}
const SettingFrame = new Lang.Class({
Name: 'SystemMonitor.SettingFrame',
_init: function(name, schema){
this.schema = schema;
this.label = new Gtk.Label({label: name});
this.frame = new Gtk.Frame({border_width: 10});
this.vbox = new Gtk.VBox({spacing:20});
this.hbox0 = new Gtk.HBox({spacing:20});
this.hbox1 = new Gtk.HBox({spacing:20});
this.hbox2 = new Gtk.HBox({spacing:20});
this.hbox3 = new Gtk.HBox({spacing:20});
this.frame.add(this.vbox);
this.vbox.pack_start(this.hbox0, true, false, 0);
this.vbox.pack_start(this.hbox1, true, false, 0);
this.vbox.pack_start(this.hbox2, true, false, 0);
this.vbox.pack_start(this.hbox3, true, false, 0);
},
/** Enforces child ordering of first 2 boxes by label */
_reorder: function() {
/** @return {string} label of/inside component */
const labelOf = el => {
if (el.get_children) return labelOf(el.get_children()[0]);
return el && el.label || '';
};
[this.hbox0, this.hbox1].forEach(box => {
box.get_children()
.sort((c1, c2) => labelOf(c1).localeCompare(labelOf(c2)))
.forEach((child, index) => box.reorder_child(child, index));
});
},
add: function(key) {
const configParent = key.substring(0, key.indexOf('-'));
const config = key.substring(configParent.length + 1);
// hbox0
if (config == 'display') {
let item = new Gtk.CheckButton({label:_('Display')});
this.hbox0.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'show-text') {
let item = new Gtk.CheckButton({label:_('Show Text')});
this.hbox0.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'show-menu') {
let item = new Gtk.CheckButton({label:_('Show In Menu')});
this.hbox0.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
// hbox1
} else if (config == 'refresh-time') {
let item = new IntSelect(_('Refresh Time'));
item.set_args(50, 100000, 1000, 5000);
this.hbox1.add(item.actor);
Schema.bind(key, item.spin, 'value', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'graph-width') {
let item = new IntSelect(_('Graph Width'));
item.set_args(1, 1000, 1, 10);
this.hbox1.add(item.actor);
Schema.bind(key, item.spin, 'value', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'style') {
let item = new Select(_('Display Style'));
item.add([_('digit'), _('graph'), _('both')]);
item.set_value(this.schema.get_enum(key));
this.hbox1.add(item.actor);
item.selector.connect('changed', function(style){
set_enum(style, Schema, key);
});
//Schema.bind(key, item.selector, 'active', Gio.SettingsBindFlags.DEFAULT);
// hbox2
} else if (config.match(/-color$/)) {
let item = new ColorSelect(_(config.split('-')[0].capitalize()));
item.set_value(this.schema.get_string(key));
this.hbox2.pack_end(item.actor, true, false, 0);
item.picker.connect('color-set', function(color){
set_color(color, Schema, key);
});
} else if (config.match(/sensor/)) {
let sensor_type = configParent == 'fan' ? 'fan' : 'temp';
let [_slist, _strlist] = check_sensors(sensor_type);
let item = new Select(_('Sensor'));
if (_slist.length == 0){
item.add([_('Please install lm-sensors')]);
} else if (_slist.length == 1){
this.schema.set_string(key, _slist[0]);
}
item.add(_strlist);
try {
item.set_value(_slist.indexOf(this.schema.get_string(key)));
} catch (e) {
item.set_value(0);
}
//this.hbox3.add(item.actor);
if (configParent == 'fan')
this.hbox2.pack_end(item.actor, true, false, 0);
else
this.hbox2.pack_start(item.actor, true, false, 0);
item.selector.connect('changed', function(combo){
set_string(combo, Schema, key, _slist);
});
// hbox3
} else if (config == 'speed-in-bits') {
let item = new Gtk.CheckButton({label:_('Show network speed in bits')});
this.hbox3.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'individual-cores') {
let item = new Gtk.CheckButton({label:_('Display Individual Cores')});
this.hbox3.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'time'){
let item = new Gtk.CheckButton({label:_('Show Time Remaining')});
this.hbox3.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'hidesystem'){
let item = new Gtk.CheckButton({label:_('Hide System Icon')});
this.hbox3.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (config == 'usage-style'){
let item = new Select(_('Usage Style'));
item.add([_('pie'), _('bar'), _('none')]);
item.set_value(this.schema.get_enum(key));
this.hbox3.pack_end(item.actor,false,false,20);
item.selector.connect('changed', function(style){
set_enum(style, Schema, key);
});
} else if (config == 'fahrenheit-unit') {
let item = new Gtk.CheckButton({label:_('Display temperature in Fahrenheit')});
this.hbox3.add(item);
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
}
this._reorder();
}
});
const App = new Lang.Class({
Name: 'SystemMonitor.App',
_init: function(){
let setting_items = ['cpu', 'memory', 'swap', 'net', 'disk', 'thermal','fan', 'freq', 'battery'];
let keys = Schema.list_keys();
this.items = [];
this.settings = [];
setting_items.forEach(Lang.bind(this, function(setting){
this.settings[setting] = new SettingFrame(_(setting.capitalize()), Schema);
}));
this.main_vbox = new Gtk.Box({ orientation: Gtk.Orientation.VERTICAL,
spacing: 10,
border_width: 10});
this.hbox1 = new Gtk.Box({orientation: Gtk.Orientation.HORIZONTAL,
spacing: 20,
border_width: 10});
this.main_vbox.pack_start(this.hbox1, false, false, 0);
keys.forEach(Lang.bind(this, function(key){
if (key == 'icon-display'){
let item = new Gtk.CheckButton({label: _('Display Icon')});
//item.set_active(Schema.get_boolean(key))
this.items.push(item)
this.hbox1.add(item)
/*item.connect('toggled', function(check){
set_boolean(check, Schema, key);
});*/
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (key == 'center-display'){
let item = new Gtk.CheckButton({label: _('Display in the Middle')})
//item.set_active(Schema.get_boolean(key))
this.items.push(item)
this.hbox1.add(item)
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (key == 'compact-display'){
let item = new Gtk.CheckButton({label: _('Compact Display')})
this.items.push(item)
this.hbox1.add(item)
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (key == 'show-tooltip'){
let item = new Gtk.CheckButton({label:_('Show tooltip')})
item.set_active(Schema.get_boolean(key))
this.items.push(item)
this.hbox1.add(item)
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (key == 'move-clock'){
let item = new Gtk.CheckButton({label:_('Move the clock')})
//item.set_active(Schema.get_boolean(key))
this.items.push(item)
this.hbox1.add(item)
Schema.bind(key, item, 'active', Gio.SettingsBindFlags.DEFAULT);
} else if (key == 'background'){
let item = new ColorSelect(_('Background Color'))
item.set_value(Schema.get_string(key))
this.items.push(item)
this.hbox1.pack_start(item.actor, true, false, 0)
item.picker.connect('color-set', function(color){
set_color(color, Schema, key);
});
} else {
let sections = key.split('-');
if (setting_items.indexOf(sections[0]) >= 0){
this.settings[sections[0]].add(key);
}
}
}));
this.notebook = new Gtk.Notebook()
setting_items.forEach(Lang.bind(this, function(setting){
this.notebook.append_page(this.settings[setting].frame, this.settings[setting].label)
this.main_vbox.pack_start(this.notebook, true, true, 0)
this.main_vbox.show_all();
}));
this.main_vbox.show_all();
}
});
function buildPrefsWidget(){
let widget = new App();
return widget.main_vbox;
};
|