/usr/share/gnome-shell/extensions/TopIcons@phocean.net/prefs.js is in gnome-shell-extension-top-icons-plus 21-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
const GObject = imports.gi.GObject;
const Gtk = imports.gi.Gtk;
const Lang = imports.lang;
const Gio = imports.gi.Gio;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Convenience = Me.imports.convenience;
const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
function init() {
Convenience.initTranslations();
}
const TopIconsPlusSettings = new GObject.Class({
Name: 'TopIconsPlusPrefs',
Extends: Gtk.Grid,
_init: function(params) {
this.parent(params);
this.margin = 24;
this.spacing = 30;
this.row_spacing = 10;
this._settings = Convenience.getSettings();
let label = null
let widget = null;
let value = null;
let positionSetting = null;
let positionButton = null;
let radio = null;
// Icon opacity
label = new Gtk.Label({
label: _('Opacity (min: 0, max: 255)'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.SpinButton({halign: Gtk.Align.END});
widget.set_sensitive(true);
widget.set_range(0, 255);
widget.set_value(this._settings.get_int('icon-opacity'));
widget.set_increments(1, 2);
widget.connect('value-changed', Lang.bind(this, function(w){
value = w.get_value_as_int();
this._settings.set_int('icon-opacity', value);
}));
this.attach(label, 0, 1, 1, 1);
this.attach(widget, 1, 1, 1, 1);
// Icon saturation
label = new Gtk.Label({
label: _('Desaturation (min: 0.0, max: 1.0)'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.SpinButton({halign:Gtk.Align.END, digits:1});
widget.set_sensitive(true);
widget.set_range(0.0, 1.0);
widget.set_value(this._settings.get_double('icon-saturation'));
widget.set_increments(0.1, 0.2);
widget.connect('value-changed', Lang.bind(this, function(w){
value = w.get_value();
this._settings.set_double('icon-saturation', value);
}));
this.attach(label, 0, 2, 1, 1);
this.attach(widget, 1, 2, 1, 1);
// Icon brightness
label = new Gtk.Label({
label: _('Brightness (min: -1.0, max: 1.0)'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.SpinButton({halign:Gtk.Align.END, digits:1});
widget.set_sensitive(true);
widget.set_range(-1.0, 1.0);
widget.set_value(this._settings.get_double('icon-brightness'));
widget.set_increments(0.1, 0.2);
widget.connect('value-changed', Lang.bind(this, function(w){
value = w.get_value();
this._settings.set_double('icon-brightness', value);
}));
this.attach(label, 0, 3, 1, 1);
this.attach(widget, 1, 3, 1, 1);
// Icon contrast
label = new Gtk.Label({
label: _('Contrast (min: -1.0, max: 1.0)'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.SpinButton({halign:Gtk.Align.END, digits:1});
widget.set_sensitive(true);
widget.set_range(-1.0, 1.0);
widget.set_value(this._settings.get_double('icon-contrast'));
widget.set_increments(0.1, 0.2);
widget.connect('value-changed', Lang.bind(this, function(w){
value = w.get_value();
this._settings.set_double('icon-contrast', value);
}));
this.attach(label, 0, 4, 1, 1);
this.attach(widget, 1, 4, 1, 1);
// Icon size
label = new Gtk.Label({
label: _('Icon size (min: 0, max: 96)'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.SpinButton({halign:Gtk.Align.END});
widget.set_sensitive(true);
widget.set_range(0, 96);
widget.set_value(this._settings.get_int('icon-size'));
widget.set_increments(1, 2);
widget.connect('value-changed', Lang.bind(this, function(w){
value = w.get_value_as_int();
this._settings.set_int('icon-size', value);
}));
this.attach(label, 0, 5, 1, 1);
this.attach(widget, 1, 5, 1, 1);
// Icon tray spacing
label = new Gtk.Label({
label: _('Spacing between icons (min: 0, max: 20)'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.SpinButton({halign:Gtk.Align.END});
widget.set_sensitive(true);
widget.set_range(0, 20);
widget.set_value(this._settings.get_int('icon-spacing'));
widget.set_increments(1, 2);
widget.connect('value-changed', Lang.bind(this, function(w){
value = w.get_value_as_int();
this._settings.set_int('icon-spacing', value);
}));
this.attach(label, 0, 6, 1, 1);
this.attach(widget, 1, 6, 1, 1);
// Tray position in panel
label = new Gtk.Label({
label: _('Tray horizontal alignment'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.ComboBoxText();
widget.append('center', _("Center"));
widget.append('left', _("Left"));
widget.append('right', _("Right"));
this._settings.bind('tray-pos', widget, 'active-id', Gio.SettingsBindFlags.DEFAULT);
this.attach(label, 0, 7, 1, 1);
this.attach(widget, 1, 7, 1, 1);
// Tray order in panel
label = new Gtk.Label({
label: _('Tray offset'),
hexpand: true,
halign: Gtk.Align.START
});
widget = new Gtk.SpinButton({halign:Gtk.Align.END});
widget.set_sensitive(true);
widget.set_range(0, 20);
widget.set_value(this._settings.get_int('tray-order'));
widget.set_increments(1, 2);
widget.connect('value-changed', Lang.bind(this, function(w){
value = w.get_value_as_int();
this._settings.set_int('tray-order', value);
}));
this.attach(label, 0, 8, 1, 1);
this.attach(widget, 1, 8, 1, 1);
//this._changedPermitted = true;
},
});
function buildPrefsWidget() {
let widget = new TopIconsPlusSettings();
widget.show_all();
return widget;
}
|