/usr/share/gnome-shell/extensions/suspend-button@laserb/prefs.js is in gnome-shell-extension-suspend-button 0~git20171025-2.
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 | // -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
// Adapted from lockkeys@vaina.lt
const Gio = imports.gi.Gio;
const Gtk = imports.gi.Gtk;
const Lang = imports.lang;
const GObject = imports.gi.GObject;
const Config = imports.misc.config;
const Gettext = imports.gettext.domain('gnome-shell-extension-suspend-button');
const _ = Gettext.gettext;
const Me = imports.misc.extensionUtils.getCurrentExtension();
const Lib = Me.imports.lib;
const SHOW_TWO_BUTTONS = 'show-two-buttons';
const SUSPEND_DEFAULT = 'suspend-default';
let _settings;
function init() {
Lib.initTranslations(Me);
_settings = Lib.getSettings(Me);
}
function buildPrefsWidget() {
let frame = new Gtk.Box({orientation: Gtk.Orientation.VERTICAL,
border_width: 10, margin: 20});
frame.add(_createCheckBox(SHOW_TWO_BUTTONS, _("Two buttons"), _("Show two distinct buttons instead of alt-switch-button.")));
frame.add(_createCheckBox(SUSPEND_DEFAULT, _("Suspend default"), _("Change alt-switch-buttons behaviour to default to suspend.\nPress alt to shutdown.\nThis setting has no effect if two buttons are shown.")));
frame.show_all();
return frame;
}
function _createCheckBox(key, text, tooltip) {
let box = new Gtk.Box({ orientation: Gtk.Orientation.HORIZONTAL });
let label = new Gtk.Label({ label: text, xalign: 0, tooltip_text:tooltip });
let widget = new Gtk.Switch({ active: _settings.get_boolean(key) });
widget.connect('notify::active', function(switch_widget) {
_settings.set_boolean(key, switch_widget.active);
});
box.pack_start(label, true, true, 0);
box.add(widget);
return box;
}
|