firefox updates
This commit is contained in:
parent
25ecd01890
commit
97f2070a7d
|
@ -1,6 +1,5 @@
|
|||
calamares
|
||||
gsmartcontrol
|
||||
manjaro-architect
|
||||
manjaro-live-skel
|
||||
manjaro-live-systemd
|
||||
mkinitcpio-nfs-utils
|
||||
|
|
|
@ -102,10 +102,11 @@ gnome-font-viewer
|
|||
gnome-keyring
|
||||
fprintd #need for finger id reader
|
||||
gnome-session
|
||||
gnome-initial-setup
|
||||
gnome-settings-daemon
|
||||
gnome-shell
|
||||
gnome-system-log
|
||||
gnome-system-monitor
|
||||
gnome-usage
|
||||
gnome-themes-standard
|
||||
gnome-user-docs
|
||||
gnome-tweaks
|
||||
|
|
|
@ -140,9 +140,11 @@ var SoundDeviceChooserBase = class SoundDeviceChooserBase {
|
|||
let obj = this._devices[id];
|
||||
let uidevice = null;
|
||||
|
||||
_d("Added - "+ id);
|
||||
|
||||
if (!obj) {
|
||||
uidevice = this.lookupDeviceById(id);
|
||||
if (!uidevice || !uidevice.port_name || uidevice.description.match(/Dummy\s+(Output|Input)/gi)) {
|
||||
if (!uidevice || uidevice.description.match(/Dummy\s+(Output|Input)/gi)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
@ -197,7 +199,7 @@ var SoundDeviceChooserBase = class SoundDeviceChooserBase {
|
|||
return uidevice;
|
||||
}
|
||||
|
||||
_d("Added: " + id + ":" + uidevice.description + ":" + uidevice.port_name + ":" + obj.uidevice.origin);
|
||||
_d("Added: " + id + ":" + uidevice.description + ":" + uidevice.port_name + ":" + uidevice.origin);
|
||||
if (!this._availableDevicesIds[id]) {
|
||||
this._availableDevicesIds[id] = 0;
|
||||
}
|
||||
|
@ -323,6 +325,7 @@ var SoundDeviceChooserBase = class SoundDeviceChooserBase {
|
|||
}
|
||||
|
||||
_deviceActivated(control, id) {
|
||||
_d("Activated:- " + id);
|
||||
let obj = this._devices[id];
|
||||
if (obj && obj !== this._activeDevice) {
|
||||
_d("Activated: " + id + ":" + obj.uidevice.description + ":" + obj.uidevice.port_name + ":" + obj.uidevice.origin);
|
||||
|
@ -366,7 +369,9 @@ var SoundDeviceChooserBase = class SoundDeviceChooserBase {
|
|||
this._setDeviceActiveProfile(device);
|
||||
}
|
||||
}*/
|
||||
this._setDeviceActiveProfile(this._activeDevice);
|
||||
if(this._activeDevice){
|
||||
this._setDeviceActiveProfile(this._activeDevice);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -503,6 +508,7 @@ var SoundDeviceChooserBase = class SoundDeviceChooserBase {
|
|||
let device = this._devices[id];
|
||||
let uidevice = device.uidevice;
|
||||
if (uidevice.port_name == null || uidevice.description == null) {
|
||||
_d("Device port_name null or description null");
|
||||
continue;
|
||||
}
|
||||
switch (this._canShowDevice(uidevice, uidevice.port_available)) {
|
||||
|
|
|
@ -79,6 +79,12 @@ function getCard(card_index) {
|
|||
return cards[card_index];
|
||||
}
|
||||
|
||||
function getCardByName(card_name) {
|
||||
if (!cards || Object.keys(cards).length == 0) {
|
||||
refreshCards();
|
||||
}
|
||||
return Object.keys(cards).map((index) => cards[index]).find(({name}) => name === card_name)
|
||||
}
|
||||
|
||||
function getProfiles(control, uidevice) {
|
||||
let stream = control.lookup_stream_id(uidevice.get_stream_id());
|
||||
|
@ -136,20 +142,16 @@ function refreshCards() {
|
|||
if (newProfLogic) {
|
||||
_log("New logic");
|
||||
let pyLocation = Me.dir.get_child('utils/pa_helper.py').get_path();
|
||||
let pythonExec = 'python';
|
||||
let pyVer = 3;
|
||||
while (!isCmdFound(pythonExec) && pyVer >= 2) {
|
||||
_log(pythonExec + " is not found. Try next");
|
||||
pythonExec = 'python' + pyVer--;
|
||||
}
|
||||
|
||||
if (pyVer <= 1) {
|
||||
_log('ERROR: Python not found. fallback to default mode' + e);
|
||||
let pythonExec = ['python', 'python3', 'python2'].find(cmd => isCmdFound(cmd));
|
||||
if (!pythonExec) {
|
||||
_log('ERROR: Python not found. fallback to default mode');
|
||||
_settings.set_boolean(Prefs.NEW_PROFILE_ID, false);
|
||||
Gio.Settings.sync();
|
||||
newProfLogic = false;
|
||||
}
|
||||
else {
|
||||
try {
|
||||
_log('Python found.' + pythonExec);
|
||||
let [result, out, err, exit_code] = GLib.spawn_command_line_sync(pythonExec + ' ' + pyLocation);
|
||||
// _log("result" + result +" out"+out + " exit_code" +
|
||||
// exit_code + "err" +err);
|
||||
|
@ -172,6 +174,7 @@ function refreshCards() {
|
|||
}
|
||||
//error = true;
|
||||
if (!newProfLogic || error) {
|
||||
_log("Old logic");
|
||||
try {
|
||||
let [result, out, err, exit_code] = GLib.spawn_command_line_sync('pactl list cards');
|
||||
if (result && !exit_code) {
|
||||
|
@ -239,7 +242,7 @@ function parseOutput(out) {
|
|||
}
|
||||
break;
|
||||
case "PORTS":
|
||||
if ((matches = /\t*(.*?):\s(.*?)\s\(.*?priority:/.exec(line))) {
|
||||
if ((matches = /\t*(.*?):\s(.*)\s\(.*?priority:/.exec(line))) {
|
||||
port = { 'name': matches[1], 'human_name': matches[2], 'card_name': cards[cardIndex].name, 'card_description' : cards[cardIndex].card_description };
|
||||
cards[cardIndex].ports.push(port);
|
||||
ports.push(port);
|
||||
|
|
|
@ -43,6 +43,9 @@ extends Base.SoundDeviceChooserBase {
|
|||
getDefaultIcon() {
|
||||
return "audio-card";
|
||||
}
|
||||
getStreams() {
|
||||
return this._control.get_sinks();
|
||||
}
|
||||
};
|
||||
|
||||
var SoundInputDeviceChooser = class SoundInputDeviceChooser
|
||||
|
@ -62,6 +65,9 @@ extends Base.SoundDeviceChooserBase {
|
|||
getDefaultIcon() {
|
||||
return "audio-input-microphone";
|
||||
}
|
||||
getStreams() {
|
||||
return this._control.get_sources();
|
||||
}
|
||||
};
|
||||
|
||||
var InputSliderInstance = class InputSliderInstance {
|
||||
|
|
|
@ -11,5 +11,5 @@
|
|||
],
|
||||
"url": "https://github.com/kgshank/gse-sound-output-device-chooser",
|
||||
"uuid": "sound-output-device-chooser@kgshank.net",
|
||||
"version": 33
|
||||
"version": 34
|
||||
}
|
|
@ -67,13 +67,15 @@ function getPortsFromSettings(_settings) {
|
|||
function setPortsSettings(ports,_settings) {
|
||||
let settingsObj = { 'version': PORT_SETTINGS_VERSION };
|
||||
settingsObj.ports = ports;
|
||||
_d(JSON.stringify(settingsObj));
|
||||
//_d(JSON.stringify(settingsObj));
|
||||
_settings.set_string(PORT_SETTINGS, JSON.stringify(settingsObj));
|
||||
return settingsObj;
|
||||
}
|
||||
|
||||
function getPortDisplayName(port) {
|
||||
return port.card_description + " - " + port.human_name;
|
||||
const card = Lib.getCardByName(port.card_name);
|
||||
const description = card && card.card_description
|
||||
return `${port.human_name} - ${description}`;
|
||||
}
|
||||
|
||||
function migratePortSettings(currVersion, currSettings, _settings) {
|
||||
|
|
Binary file not shown.
|
@ -25,13 +25,16 @@ var SettingsManager = GObject.registerClass(
|
|||
'show-window-buttons': 'enum',
|
||||
'window-buttons-theme': 'enum',
|
||||
'hide-window-titlebars': 'enum',
|
||||
'enable-titlebar-actions': 'boolean',
|
||||
'window-buttons-placement': 'select',
|
||||
'hide-dropdown-arrows': 'boolean',
|
||||
'hide-aggregate-menu-arrow': 'boolean',
|
||||
'hide-app-menu-arrow': 'boolean',
|
||||
'hide-app-menu-icon': 'boolean',
|
||||
'reduce-panel-spacing': 'boolean',
|
||||
'restrict-to-primary-screen': 'boolean'
|
||||
'restrict-to-primary-screen': 'boolean',
|
||||
'app-menu-max-width': 'int',
|
||||
'app-menu-ellipsize-mode': 'enum'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -50,8 +53,11 @@ var SettingsManager = GObject.registerClass(
|
|||
getSetting(key) {
|
||||
if (!this.exists(key)) return
|
||||
|
||||
let boolean = this.getSettingType(key) == 'boolean'
|
||||
return boolean ? this.get_boolean(key) : this.get_string(key)
|
||||
switch (this.getSettingType(key)) {
|
||||
case 'int': return this.get_int(key)
|
||||
case 'boolean': return this.get_boolean(key)
|
||||
default: return this.get_string(key)
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
|
|
|
@ -12,5 +12,5 @@
|
|||
],
|
||||
"url": "https://github.com/hardpixel/unite-shell",
|
||||
"uuid": "unite@hardpixel.eu",
|
||||
"version": 44
|
||||
"version": 45
|
||||
}
|
|
@ -1,7 +1,11 @@
|
|||
const Gi = imports._gi
|
||||
const System = imports.system
|
||||
const GObject = imports.gi.GObject
|
||||
const GLib = imports.gi.GLib
|
||||
const St = imports.gi.St
|
||||
const Pango = imports.gi.Pango
|
||||
const Clutter = imports.gi.Clutter
|
||||
const Meta = imports.gi.Meta
|
||||
const Shell = imports.gi.Shell
|
||||
const AppSystem = imports.gi.Shell.AppSystem.get_default()
|
||||
const WinTracker = imports.gi.Shell.WindowTracker.get_default()
|
||||
|
@ -487,6 +491,200 @@ var TrayIcons = class TrayIcons extends PanelExtension {
|
|||
}
|
||||
}
|
||||
|
||||
var TitlebarActions = class TitlebarActions extends PanelExtension {
|
||||
constructor({ settings }) {
|
||||
const active = val => val == true
|
||||
super(settings, 'enable-titlebar-actions', active)
|
||||
}
|
||||
|
||||
_init() {
|
||||
this.signals = new Handlers.Signals()
|
||||
this.settings = new Handlers.Settings()
|
||||
|
||||
this.signals.connect(
|
||||
Main.panel, 'button-press-event', this._onButtonPressEvent.bind(this)
|
||||
)
|
||||
}
|
||||
|
||||
_onButtonPressEvent(actor, event) {
|
||||
const focusWindow = global.unite.focusWindow
|
||||
|
||||
if (!focusWindow || !focusWindow.hideTitlebars) {
|
||||
return Clutter.EVENT_PROPAGATE
|
||||
}
|
||||
|
||||
const [mouseX, mouseY] = event.get_coords()
|
||||
|
||||
const ccount = event.get_click_count()
|
||||
const button = event.get_button()
|
||||
|
||||
const clickOnChildren = Main.panel.get_children().some(({ x, y, width, height }) => {
|
||||
return mouseX >= x && mouseX <= x + width && mouseY >= y && mouseY <= y + height
|
||||
})
|
||||
|
||||
if (clickOnChildren) {
|
||||
return Clutter.EVENT_PROPAGATE
|
||||
}
|
||||
|
||||
let action = null
|
||||
|
||||
if (button == 1 && ccount == 2) {
|
||||
action = this.settings.get('action-double-click-titlebar')
|
||||
}
|
||||
|
||||
if (button == 2) {
|
||||
action = this.settings.get('action-middle-click-titlebar')
|
||||
}
|
||||
|
||||
if (button == 3) {
|
||||
action = this.settings.get('action-right-click-titlebar')
|
||||
}
|
||||
|
||||
if (action == 'menu') {
|
||||
this._openWindowMenu(focusWindow.win, mouseX)
|
||||
return Clutter.EVENT_STOP
|
||||
}
|
||||
|
||||
if (action && action != 'none') {
|
||||
return this._handleClickAction(action, focusWindow)
|
||||
}
|
||||
|
||||
return Clutter.EVENT_PROPAGATE
|
||||
}
|
||||
|
||||
_handleClickAction(action, win) {
|
||||
const mapping = {
|
||||
'toggle-maximize': 'maximize',
|
||||
'toggle-maximize-horizontally': 'maximizeX',
|
||||
'toggle-maximize-vertically': 'maximizeY',
|
||||
'toggle-shade': 'shade',
|
||||
'minimize': 'minimize',
|
||||
'lower': 'lower'
|
||||
}
|
||||
|
||||
const method = mapping[action]
|
||||
|
||||
if (method) {
|
||||
win[method].call(win)
|
||||
return Clutter.EVENT_STOP
|
||||
}
|
||||
|
||||
return Clutter.EVENT_PROPAGATE
|
||||
}
|
||||
|
||||
_openWindowMenu(win, x) {
|
||||
const size = Main.panel.height + 4
|
||||
const rect = { x, y: 0, width: size, height: size }
|
||||
const type = Meta.WindowMenuType.WM
|
||||
|
||||
Main.wm._windowMenuManager.showWindowMenuForWindow(win, type, rect)
|
||||
}
|
||||
|
||||
_destroy() {
|
||||
this.signals.disconnectAll()
|
||||
this.settings.disconnectAll()
|
||||
}
|
||||
}
|
||||
|
||||
var AppMenuCustomizer = class AppMenuCustomizer extends PanelExtension {
|
||||
constructor({ settings }) {
|
||||
const active = val => val > 0
|
||||
super(settings, 'app-menu-max-width', active)
|
||||
}
|
||||
|
||||
_init() {
|
||||
this.signals = new Handlers.Signals()
|
||||
this.settings = new Handlers.Settings()
|
||||
this.tooltip = new St.Label({ visible: false, style_class: 'dash-label' })
|
||||
|
||||
this.signals.connect(
|
||||
AppMenu, 'notify::hover', this._onAppMenuHover.bind(this)
|
||||
)
|
||||
|
||||
this.signals.connect(
|
||||
AppMenu, 'button-press-event', this._onAppMenuClicked.bind(this)
|
||||
)
|
||||
|
||||
this.settings.connect(
|
||||
'app-menu-max-width', this._onMaxWidthChange.bind(this)
|
||||
)
|
||||
|
||||
this.settings.connect(
|
||||
'app-menu-ellipsize-mode', this._onEllipsizeModeChange.bind(this)
|
||||
)
|
||||
|
||||
Main.uiGroup.add_child(this.tooltip)
|
||||
|
||||
this._onMaxWidthChange()
|
||||
}
|
||||
|
||||
get maxWidth() {
|
||||
return this.settings.get('app-menu-max-width')
|
||||
}
|
||||
|
||||
get ellipsizeMode() {
|
||||
return this.settings.get('app-menu-ellipsize-mode')
|
||||
}
|
||||
|
||||
setLabelMaxWidth(width) {
|
||||
const label = AppMenu._label
|
||||
label && label.set_style('max-width' + (width ? `: ${width}px` : ''))
|
||||
}
|
||||
|
||||
setTextEllipsizeMode(mode) {
|
||||
const modeK = mode.toUpperCase()
|
||||
const label = AppMenu._label
|
||||
|
||||
label && label.get_clutter_text().set_ellipsize(Pango.EllipsizeMode[modeK])
|
||||
}
|
||||
|
||||
_onAppMenuHover(appMenu) {
|
||||
if (!appMenu._label) return
|
||||
|
||||
this.isHovered = appMenu.get_hover()
|
||||
|
||||
if (!this.isHovered) {
|
||||
return this.tooltip.hide()
|
||||
}
|
||||
|
||||
GLib.timeout_add(GLib.PRIORITY_DEFAULT, 400, () => {
|
||||
if (this.isHovered && !this.tooltip.visible) {
|
||||
const [mouseX, mouseY] = global.get_pointer()
|
||||
|
||||
this.tooltip.set_position(mouseX + 20, mouseY)
|
||||
this.tooltip.set_text(appMenu._label.get_text())
|
||||
this.tooltip.show()
|
||||
}
|
||||
|
||||
return GLib.SOURCE_REMOVE
|
||||
})
|
||||
}
|
||||
|
||||
_onAppMenuClicked() {
|
||||
this.isHovered = false
|
||||
this.tooltip.hide()
|
||||
}
|
||||
|
||||
_onMaxWidthChange() {
|
||||
this.setLabelMaxWidth(this.maxWidth)
|
||||
this.setTextEllipsizeMode(this.ellipsizeMode)
|
||||
}
|
||||
|
||||
_onEllipsizeModeChange() {
|
||||
this.setTextEllipsizeMode(this.ellipsizeMode)
|
||||
}
|
||||
|
||||
_destroy() {
|
||||
this.tooltip.destroy()
|
||||
|
||||
this.setLabelMaxWidth(null)
|
||||
this.setTextEllipsizeMode('end')
|
||||
|
||||
this.signals.disconnectAll()
|
||||
this.settings.disconnectAll()
|
||||
}
|
||||
}
|
||||
|
||||
var PanelManager = GObject.registerClass(
|
||||
class UnitePanelManager extends GObject.Object {
|
||||
_init() {
|
||||
|
@ -496,6 +694,8 @@ var PanelManager = GObject.registerClass(
|
|||
this.activities = new ActivitiesButton(this)
|
||||
this.desktop = new DesktopName(this)
|
||||
this.tray = new TrayIcons(this)
|
||||
this.titlebar = new TitlebarActions(this)
|
||||
this.appmenu = new AppMenuCustomizer(this)
|
||||
}
|
||||
|
||||
activate() {
|
||||
|
@ -504,6 +704,8 @@ var PanelManager = GObject.registerClass(
|
|||
this.activities.activate()
|
||||
this.desktop.activate()
|
||||
this.tray.activate()
|
||||
this.titlebar.activate()
|
||||
this.appmenu.activate()
|
||||
}
|
||||
|
||||
destroy() {
|
||||
|
@ -512,6 +714,8 @@ var PanelManager = GObject.registerClass(
|
|||
this.activities.destroy()
|
||||
this.desktop.destroy()
|
||||
this.tray.destroy()
|
||||
this.titlebar.destroy()
|
||||
this.appmenu.destroy()
|
||||
|
||||
this.settings.disconnectAll()
|
||||
}
|
||||
|
|
|
@ -20,6 +20,9 @@ var PrefsWidget = GObject.registerClass(
|
|||
|
||||
if (VERSION >= 36) {
|
||||
const fonts = this._getWidget('use_system_fonts_section')
|
||||
|
||||
fonts.set_no_show_all(true)
|
||||
fonts.set_visible(false)
|
||||
fonts.set_sensitive(false)
|
||||
}
|
||||
|
||||
|
@ -27,6 +30,7 @@ var PrefsWidget = GObject.registerClass(
|
|||
this._bindSelects()
|
||||
this._bindBooleans()
|
||||
this._bindEnumerations()
|
||||
this._bindIntegers()
|
||||
}
|
||||
|
||||
_getWidget(name) {
|
||||
|
@ -67,6 +71,11 @@ var PrefsWidget = GObject.registerClass(
|
|||
let settings = this._settings.getTypeSettings('enum')
|
||||
settings.forEach(setting => { this._bindEnum(setting) })
|
||||
}
|
||||
|
||||
_bindIntegers() {
|
||||
let settings = this._settings.getTypeSettings('int')
|
||||
settings.forEach(setting => { this._bindInput(setting, 'value') })
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Binary file not shown.
|
@ -59,6 +59,12 @@
|
|||
<value value="2" nick="always" />
|
||||
</enum>
|
||||
|
||||
<enum id="org.gnome.shell.extensions.unite.ellipsizeMode">
|
||||
<value value="0" nick="start" />
|
||||
<value value="1" nick="middle" />
|
||||
<value value="2" nick="end" />
|
||||
</enum>
|
||||
|
||||
<schema id="org.gnome.shell.extensions.unite" path="/org/gnome/shell/extensions/unite/">
|
||||
<key name="use-system-fonts" type="b">
|
||||
<default>true</default>
|
||||
|
@ -95,6 +101,11 @@
|
|||
<summary>Set the top bar desktop name text.</summary>
|
||||
</key>
|
||||
|
||||
<key name="enable-titlebar-actions" type="b">
|
||||
<default>true</default>
|
||||
<summary>Enable window titlebar actions on top bar click.</summary>
|
||||
</key>
|
||||
|
||||
<key name="restrict-to-primary-screen" type="b">
|
||||
<default>true</default>
|
||||
<summary>Restrict functionalities to the primary screen.</summary>
|
||||
|
@ -120,6 +131,16 @@
|
|||
<summary>Hide app menu application icon.</summary>
|
||||
</key>
|
||||
|
||||
<key name="app-menu-max-width" type="i">
|
||||
<default>0</default>
|
||||
<summary>Limit the width of the app menu. 0 means no limit.</summary>
|
||||
</key>
|
||||
|
||||
<key name="app-menu-ellipsize-mode" enum="org.gnome.shell.extensions.unite.ellipsizeMode">
|
||||
<default>"end"</default>
|
||||
<summary>The place where characters will be omitted when the max width of the app menu is reached.</summary>
|
||||
</key>
|
||||
|
||||
<key name="reduce-panel-spacing" type="b">
|
||||
<default>true</default>
|
||||
<summary>Reduce top bar items spacing.</summary>
|
||||
|
|
|
@ -1,34 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generated with glade 3.22.1 -->
|
||||
<!-- Generated with glade 3.38.2 -->
|
||||
<interface domain="unite">
|
||||
<requires lib="gtk+" version="3.10"/>
|
||||
<object class="GtkAdjustment" id="maxwidth_appmenu_adjustment">
|
||||
<property name="upper">1000</property>
|
||||
<property name="step-increment">1</property>
|
||||
<property name="page-increment">10</property>
|
||||
</object>
|
||||
<object class="GtkNotebook" id="prefs_widget">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="hexpand">True</property>
|
||||
<property name="show_border">False</property>
|
||||
<property name="show-border">False</property>
|
||||
<property name="scrollable">True</property>
|
||||
<child>
|
||||
<object class="GtkBox" id="general_prefs">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">start</property>
|
||||
<property name="margin_left">20</property>
|
||||
<property name="margin_right">20</property>
|
||||
<property name="margin_top">20</property>
|
||||
<property name="margin_bottom">20</property>
|
||||
<property name="margin-left">20</property>
|
||||
<property name="margin-right">20</property>
|
||||
<property name="margin-top">20</property>
|
||||
<property name="margin-bottom">20</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">15</property>
|
||||
<property name="homogeneous">True</property>
|
||||
<child>
|
||||
<object class="GtkBox" id="extend_left_box_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Extend top bar left box</property>
|
||||
</object>
|
||||
|
@ -41,14 +46,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="extend_left_box">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -56,18 +61,18 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">1</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="autofocus_windows_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Auto focus new windows</property>
|
||||
</object>
|
||||
|
@ -80,14 +85,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="autofocus_windows">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -95,18 +100,18 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">2</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="show_legacy_tray_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Show system tray in top bar</property>
|
||||
</object>
|
||||
|
@ -119,14 +124,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="show_legacy_tray">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -134,18 +139,18 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">3</property>
|
||||
<property name="position">2</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="show_desktop_name_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Show desktop name in top bar</property>
|
||||
</object>
|
||||
|
@ -158,14 +163,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="show_desktop_name">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -173,18 +178,57 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">5</property>
|
||||
<property name="position">3</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="enable_titlebar_actions_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Enable titlebar actions on top bar click</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="enable_titlebar_actions">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">4</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="restrict_to_primary_screen_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Restrict functionalities to the primary screen</property>
|
||||
</object>
|
||||
|
@ -197,14 +241,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="restrict_to_primary_screen">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -212,18 +256,18 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">6</property>
|
||||
<property name="position">5</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="hide_activities_button_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Hide activities button</property>
|
||||
</object>
|
||||
|
@ -235,10 +279,10 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="hide_activities_button">
|
||||
<property name="width_request">170</property>
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="active_id">1</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">1</property>
|
||||
<items>
|
||||
<item id="0" translatable="yes">Never</item>
|
||||
<item id="1" translatable="yes">Auto</item>
|
||||
|
@ -248,7 +292,7 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -256,18 +300,18 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">8</property>
|
||||
<property name="position">6</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="hide_window_titlebars_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Hide window titlebars</property>
|
||||
</object>
|
||||
|
@ -279,10 +323,10 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="hide_window_titlebars">
|
||||
<property name="width_request">170</property>
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="active_id">2</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">2</property>
|
||||
<items>
|
||||
<item id="0" translatable="yes">Never</item>
|
||||
<item id="1" translatable="yes">Tiled</item>
|
||||
|
@ -294,7 +338,7 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -302,18 +346,18 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">9</property>
|
||||
<property name="position">7</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="show_window_title_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Show window title in app menu</property>
|
||||
</object>
|
||||
|
@ -325,10 +369,10 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="show_window_title">
|
||||
<property name="width_request">170</property>
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="active_id">2</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">2</property>
|
||||
<items>
|
||||
<item id="0" translatable="yes">Never</item>
|
||||
<item id="1" translatable="yes">Tiled</item>
|
||||
|
@ -340,7 +384,7 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -348,18 +392,18 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">10</property>
|
||||
<property name="position">8</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="show_window_buttons_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Show window buttons in top bar</property>
|
||||
</object>
|
||||
|
@ -371,10 +415,10 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="show_window_buttons">
|
||||
<property name="width_request">170</property>
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="active_id">2</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">2</property>
|
||||
<items>
|
||||
<item id="0" translatable="yes">Never</item>
|
||||
<item id="1" translatable="yes">Tiled</item>
|
||||
|
@ -386,7 +430,7 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -400,12 +444,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="notifications_position_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Notification messages position</property>
|
||||
</object>
|
||||
|
@ -417,10 +461,10 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="notifications_position">
|
||||
<property name="width_request">170</property>
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="active_id">2</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">2</property>
|
||||
<items>
|
||||
<item id="0" translatable="yes">Center</item>
|
||||
<item id="1" translatable="yes">Left</item>
|
||||
|
@ -430,7 +474,7 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -443,40 +487,40 @@
|
|||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="tab_expand">True</property>
|
||||
<property name="tab-expand">True</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child type="tab">
|
||||
<object class="GtkLabel" id="general_label">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="label" translatable="yes">General</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="tab_fill">False</property>
|
||||
<property name="tab-fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="appearance_prefs">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">start</property>
|
||||
<property name="margin_left">20</property>
|
||||
<property name="margin_right">20</property>
|
||||
<property name="margin_top">20</property>
|
||||
<property name="margin_bottom">20</property>
|
||||
<property name="margin-left">20</property>
|
||||
<property name="margin-right">20</property>
|
||||
<property name="margin-top">20</property>
|
||||
<property name="margin-bottom">20</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">15</property>
|
||||
<property name="homogeneous">True</property>
|
||||
<child>
|
||||
<object class="GtkBox" id="use_system_fonts_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Apply system fonts to shell theme</property>
|
||||
</object>
|
||||
|
@ -489,14 +533,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="use_system_fonts">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -510,12 +554,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="greyscale_tray_icons_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Convert tray icons to greyscale</property>
|
||||
</object>
|
||||
|
@ -528,13 +572,13 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="greyscale_tray_icons">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -548,12 +592,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="hide_dropdown_arrows_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Hide top bar dropdown arrows</property>
|
||||
</object>
|
||||
|
@ -566,14 +610,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="hide_dropdown_arrows">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -587,12 +631,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="hide_aggregate_menu_arrow_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Hide aggregate menu dropdown arrow</property>
|
||||
</object>
|
||||
|
@ -605,13 +649,13 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="hide_aggregate_menu_arrow">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -625,12 +669,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="hide_app_menu_arrow_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Hide app menu dropdown arrow</property>
|
||||
</object>
|
||||
|
@ -643,14 +687,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="hide_app_menu_arrow">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -664,12 +708,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="hide_app_menu_icon_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Hide app menu application icon</property>
|
||||
</object>
|
||||
|
@ -682,14 +726,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="hide_app_menu_icon">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -703,12 +747,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="reduce_panel_spacing_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Reduce top bar items spacing</property>
|
||||
</object>
|
||||
|
@ -721,14 +765,14 @@
|
|||
<child>
|
||||
<object class="GtkSwitch" id="reduce_panel_spacing">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="active">True</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -742,12 +786,12 @@
|
|||
<child>
|
||||
<object class="GtkBox" id="desktop_name_text_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Top bar desktop name text</property>
|
||||
</object>
|
||||
|
@ -759,15 +803,15 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkEntry" id="desktop_name_text">
|
||||
<property name="width_request">170</property>
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="text" translatable="yes">GNOME Desktop</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -779,17 +823,15 @@
|
|||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="window_buttons_placement_section">
|
||||
<object class="GtkBox" id="app_menu_max_width_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="no_show_all">True</property>
|
||||
<property name="spacing">50</property>
|
||||
<property name="can-focus">False</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Top bar window buttons position</property>
|
||||
<property name="label" translatable="yes">Max width for the app menu</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
|
@ -798,23 +840,17 @@
|
|||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="window_buttons_placement">
|
||||
<property name="width_request">170</property>
|
||||
<object class="GtkSpinButton" id="app_menu_max_width">
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="active_id">auto</property>
|
||||
<items>
|
||||
<item id="auto" translatable="yes">Auto</item>
|
||||
<item id="left" translatable="yes">Left</item>
|
||||
<item id="right" translatable="yes">Right</item>
|
||||
<item id="first" translatable="yes">First</item>
|
||||
<item id="last" translatable="yes">Last</item>
|
||||
</items>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="text" translatable="yes">0</property>
|
||||
<property name="adjustment">maxwidth_appmenu_adjustment</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -826,15 +862,105 @@
|
|||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="window_buttons_theme_section">
|
||||
<object class="GtkBox" id="app_menu_ellipsize_mode_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="no_show_all">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Ellipsis mode for app menu</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="app_menu_ellipsize_mode">
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">2</property>
|
||||
<items>
|
||||
<item id="0" translatable="yes">Start</item>
|
||||
<item id="1" translatable="yes">Middle</item>
|
||||
<item id="2" translatable="yes">End</item>
|
||||
</items>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">9</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="window_buttons_placement_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="no-show-all">True</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Top bar window buttons position</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="window_buttons_placement">
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">auto</property>
|
||||
<items>
|
||||
<item id="auto" translatable="yes">Auto</item>
|
||||
<item id="left" translatable="yes">Left</item>
|
||||
<item id="right" translatable="yes">Right</item>
|
||||
<item id="first" translatable="yes">First</item>
|
||||
<item id="last" translatable="yes">Last</item>
|
||||
</items>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">10</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="window_buttons_theme_section">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="no-show-all">True</property>
|
||||
<property name="spacing">50</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">Top bar window buttons theme</property>
|
||||
</object>
|
||||
|
@ -846,10 +972,10 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="window_buttons_theme">
|
||||
<property name="width_request">170</property>
|
||||
<property name="width-request">170</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="active_id">0</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="active-id">0</property>
|
||||
<items>
|
||||
<item id="0" translatable="yes">Default Dark</item>
|
||||
<item id="1" translatable="yes">Default Light</item>
|
||||
|
@ -877,7 +1003,7 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">end</property>
|
||||
<property name="pack-type">end</property>
|
||||
<property name="position">1</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
@ -885,24 +1011,24 @@
|
|||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">9</property>
|
||||
<property name="position">11</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="position">1</property>
|
||||
<property name="tab_expand">True</property>
|
||||
<property name="tab-expand">True</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child type="tab">
|
||||
<object class="GtkLabel" id="appearance_label">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="label" translatable="yes">Appearance</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="position">1</property>
|
||||
<property name="tab_fill">False</property>
|
||||
<property name="tab-fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
|
|
|
@ -252,6 +252,34 @@ var MetaWindow = GObject.registerClass(
|
|||
}
|
||||
}
|
||||
|
||||
maximizeX() {
|
||||
if (this.win.maximized_horizontally) {
|
||||
this.win.unmaximize(Meta.MaximizeFlags.HORIZONTAL)
|
||||
} else {
|
||||
this.win.maximize(Meta.MaximizeFlags.HORIZONTAL)
|
||||
}
|
||||
}
|
||||
|
||||
maximizeY() {
|
||||
if (this.win.maximized_vertically) {
|
||||
this.win.unmaximize(Meta.MaximizeFlags.VERTICAL)
|
||||
} else {
|
||||
this.win.maximize(Meta.MaximizeFlags.VERTICAL)
|
||||
}
|
||||
}
|
||||
|
||||
shade() {
|
||||
if (this.win.is_shaded) {
|
||||
this.win.shade(true)
|
||||
} else {
|
||||
this.win.unshade(true)
|
||||
}
|
||||
}
|
||||
|
||||
lower() {
|
||||
this.win.lower()
|
||||
}
|
||||
|
||||
close() {
|
||||
const time = global.get_current_time()
|
||||
time && this.win.delete(time)
|
||||
|
@ -279,7 +307,9 @@ var MetaWindow = GObject.registerClass(
|
|||
|
||||
if (label && this.hasFocus && this.title) {
|
||||
const current = label.get_text()
|
||||
current != this.title && label.set_text(this.title)
|
||||
const newText = this.title.replace(/\r?\n|\r/g, ' ')
|
||||
|
||||
current != newText && label.set_text(newText)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
/home/tio/TROM-Share/TROM-Jaro Icons/DONE
|
||||
/home/tio/TROM Share/TROM-Jaro Icons/DONE
|
|
@ -0,0 +1 @@
|
|||
firefox.settings.services.mozilla.com:HSTS 0 18700 1647218225303,1,0,2
|
Binary file not shown.
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1611086252115\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}}
|
||||
{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1615665497160\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.js","symbolName":"remoteSettingsBroadcastHandler"}}}}
|
|
@ -1,5 +1,5 @@
|
|||
[Compatibility]
|
||||
LastVersion=84.0.2_20210107154745/20210107154745
|
||||
LastVersion=86.0.1_20210313191229/20210313191229
|
||||
LastOSABI=Linux_x86_64-gcc3
|
||||
LastPlatformDir=/usr/lib/firefox
|
||||
LastAppDir=/usr/lib/firefox/browser
|
||||
|
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
{"chrome-gnome-shell@gnome.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wayback_machine@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"jid1-MnnxcxisBPnSXQ@jetpack":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"yayanotherspeeddial@bakadev.fr":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"uBlock0@raymondhill.net":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"formautofill@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"fxmonitor@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"amazondotcom@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"bing@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"google@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"twitter@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wikipedia@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ddg@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"doh-rollout@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ebay@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]}}
|
||||
{"chrome-gnome-shell@gnome.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wayback_machine@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"jid1-MnnxcxisBPnSXQ@jetpack":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"yayanotherspeeddial@bakadev.fr":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"uBlock0@raymondhill.net":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"formautofill@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"screenshots@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"webcompat@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"fxmonitor@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"default-theme@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"amazondotcom@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"bing@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"google@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"twitter@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"wikipedia@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ddg@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"doh-rollout@mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"ebay@search.mozilla.org":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]},"reset-search-defaults@mozilla.com":{"permissions":["internal:privateBrowsingAllowed"],"origins":[]}}
|
|
@ -1 +1 @@
|
|||
{"version":2,"prefs":{"websites.hyperlinkAuditingEnabled":{"initialValue":{},"precedenceList":[{"id":"jid1-MnnxcxisBPnSXQ@jetpack","installDate":1542628050000,"value":false,"enabled":true},{"id":"uBlock0@raymondhill.net","installDate":1542627999000,"value":false,"enabled":true}]},"network.networkPredictionEnabled":{"initialValue":{},"precedenceList":[{"id":"uBlock0@raymondhill.net","installDate":1542627999000,"value":false,"enabled":true}]},"homepage_override":{"initialValue":{},"precedenceList":[{"id":"yayanotherspeeddial@bakadev.fr","installDate":1552785444000,"value":"moz-extension://f393b4c4-359a-4d1e-b377-fd4b41112e16/index.html","enabled":true}]}},"url_overrides":{"newTabURL":{"initialValue":"about:newtab","precedenceList":[{"id":"yayanotherspeeddial@bakadev.fr","installDate":1552785444000,"value":"moz-extension://f393b4c4-359a-4d1e-b377-fd4b41112e16/index.html","enabled":true},{"id":"michal.simonfy@gmail.com","installDate":1542628426000,"value":"moz-extension://981c6be9-159a-4b60-a87e-0e77059e9e1a/newtab.html","enabled":false}]}},"default_search":{"engineAdded":{"precedenceList":[{"id":"ddg@search.mozilla.org","installDate":1569709371053,"value":"DuckDuckGo","enabled":true},{"id":"wikipedia@search.mozilla.org","installDate":1569709371001,"value":"Wikipedia (en)","enabled":true},{"id":"google@search.mozilla.org","installDate":1569709370845,"value":"Google","enabled":true},{"id":"bing@search.mozilla.org","installDate":1569709370787,"value":"Bing","enabled":true},{"id":"amazondotcom@search.mozilla.org","installDate":1569709370692,"value":"Amazon.com","enabled":true}]}},"commands":{},"newTabNotification":{"yayanotherspeeddial@bakadev.fr":{"initialValue":false,"precedenceList":[{"id":"yayanotherspeeddial@bakadev.fr","installDate":1552785444000,"value":true,"enabled":true}]}},"homepageNotification":{},"tabHideNotification":{}}
|
||||
{"version":2,"prefs":{"websites.hyperlinkAuditingEnabled":{"initialValue":{},"precedenceList":[{"id":"jid1-MnnxcxisBPnSXQ@jetpack","installDate":1542628050000,"value":false,"enabled":true},{"id":"uBlock0@raymondhill.net","installDate":1542627999000,"value":false,"enabled":true}]},"network.networkPredictionEnabled":{"initialValue":{},"precedenceList":[{"id":"jid1-MnnxcxisBPnSXQ@jetpack","installDate":1542628050000,"value":false,"enabled":true},{"id":"uBlock0@raymondhill.net","installDate":1542627999000,"value":false,"enabled":true}]},"homepage_override":{"initialValue":{},"precedenceList":[{"id":"yayanotherspeeddial@bakadev.fr","installDate":1552785444000,"value":"moz-extension://f393b4c4-359a-4d1e-b377-fd4b41112e16/index.html","enabled":true}]}},"url_overrides":{"newTabURL":{"initialValue":"about:newtab","precedenceList":[{"id":"yayanotherspeeddial@bakadev.fr","installDate":1552785444000,"value":"moz-extension://f393b4c4-359a-4d1e-b377-fd4b41112e16/index.html","enabled":true},{"id":"michal.simonfy@gmail.com","installDate":1542628426000,"value":"moz-extension://981c6be9-159a-4b60-a87e-0e77059e9e1a/newtab.html","enabled":false}]}},"default_search":{"engineAdded":{"precedenceList":[{"id":"ddg@search.mozilla.org","installDate":1569709371053,"value":"DuckDuckGo","enabled":true},{"id":"wikipedia@search.mozilla.org","installDate":1569709371001,"value":"Wikipedia (en)","enabled":true},{"id":"google@search.mozilla.org","installDate":1569709370845,"value":"Google","enabled":true},{"id":"bing@search.mozilla.org","installDate":1569709370787,"value":"Bing","enabled":true},{"id":"amazondotcom@search.mozilla.org","installDate":1569709370692,"value":"Amazon.com","enabled":true}]}},"commands":{},"newTabNotification":{"yayanotherspeeddial@bakadev.fr":{"initialValue":false,"precedenceList":[{"id":"yayanotherspeeddial@bakadev.fr","installDate":1552785444000,"value":true,"enabled":true}]}},"homepageNotification":{},"tabHideNotification":{}}
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -14,22 +14,21 @@ user_pref("app.normandy.first_run", false);
|
|||
user_pref("app.normandy.migrationsApplied", 10);
|
||||
user_pref("app.normandy.startupExperimentPrefs.dom.push.alwaysConnect", true);
|
||||
user_pref("app.normandy.startupRolloutPrefs.app.normandy.onsync_skew_sec", 3300);
|
||||
user_pref("app.normandy.startupRolloutPrefs.browser.toolbars.bookmarks.2h2020", true);
|
||||
user_pref("app.normandy.startupRolloutPrefs.doh-rollout.enabled", true);
|
||||
user_pref("app.normandy.startupRolloutPrefs.doh-rollout.profileCreationThreshold", "1896163212345");
|
||||
user_pref("app.normandy.startupRolloutPrefs.network.preload", true);
|
||||
user_pref("app.normandy.startupRolloutPrefs.services.sync.bookmarks.buffer.enabled", true);
|
||||
user_pref("app.normandy.user_id", "f6151ad0-fece-4d81-9d5c-67449843ccf0");
|
||||
user_pref("app.shield.optoutstudies.enabled", false);
|
||||
user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1611097648);
|
||||
user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1613762580);
|
||||
user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1588540518);
|
||||
user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1611097888);
|
||||
user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1611098008);
|
||||
user_pref("app.update.lastUpdateTime.browser-cleanup-thumbnails", 1615682011);
|
||||
user_pref("app.update.lastUpdateTime.recipe-client-addon-run", 1615681985);
|
||||
user_pref("app.update.lastUpdateTime.region-update-timer", 1613761980);
|
||||
user_pref("app.update.lastUpdateTime.rs-experiment-loader-timer", 1608565076);
|
||||
user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1608565357);
|
||||
user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1608565477);
|
||||
user_pref("app.update.lastUpdateTime.search-engine-update-timer", 1615682131);
|
||||
user_pref("app.update.lastUpdateTime.services-settings-poll-changes", 1613762220);
|
||||
user_pref("app.update.lastUpdateTime.telemetry_modules_ping", 1573002408);
|
||||
user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1611097768);
|
||||
user_pref("app.update.lastUpdateTime.xpi-signature-verification", 1613762700);
|
||||
user_pref("browser.bookmarks.defaultLocation", "unfiled");
|
||||
user_pref("browser.bookmarks.restore_default_bookmarks", false);
|
||||
user_pref("browser.cache.disk.amount_written", 1754406);
|
||||
|
@ -45,6 +44,7 @@ user_pref("browser.download.useDownloadDir", false);
|
|||
user_pref("browser.download.viewableInternally.typeWasRegistered.svg", true);
|
||||
user_pref("browser.download.viewableInternally.typeWasRegistered.webp", true);
|
||||
user_pref("browser.download.viewableInternally.typeWasRegistered.xml", true);
|
||||
user_pref("browser.engagement.library-button.has-used", true);
|
||||
user_pref("browser.laterrun.bookkeeping.profileCreationTime", 1542627881);
|
||||
user_pref("browser.laterrun.bookkeeping.sessionCount", 51);
|
||||
user_pref("browser.messaging-system.whatsNewPanel.enabled", false);
|
||||
|
@ -60,24 +60,27 @@ user_pref("browser.newtabpage.pinned", "[{\"url\":\"https://google.com\",\"label
|
|||
user_pref("browser.newtabpage.storageVersion", 1);
|
||||
user_pref("browser.pageActions.persistedActions", "{\"version\":1,\"ids\":[\"bookmark\",\"bookmarkSeparator\",\"copyURL\",\"emailLink\",\"addSearchEngine\",\"screenshots_mozilla_org\",\"pinTab\"],\"idsInUrlbar\":[\"bookmark\"]}");
|
||||
user_pref("browser.pagethumbnails.storage_version", 3);
|
||||
user_pref("browser.region.update.first-seen", 1613761980);
|
||||
user_pref("browser.region.update.region", "GB");
|
||||
user_pref("browser.region.update.updated", 1613761980);
|
||||
user_pref("browser.rights.3.shown", true);
|
||||
user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1611099419825");
|
||||
user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1611101199825");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1611097630263");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1611119230263");
|
||||
user_pref("browser.safebrowsing.provider.google4.lastupdatetime", "1613763738699");
|
||||
user_pref("browser.safebrowsing.provider.google4.nextupdatetime", "1613765555699");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.lastupdatetime", "1615681989433");
|
||||
user_pref("browser.safebrowsing.provider.mozilla.nextupdatetime", "1615703589433");
|
||||
user_pref("browser.search.region", "ES");
|
||||
user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20210107154745");
|
||||
user_pref("browser.sessionstore.upgradeBackup.latestBuildID", "20210313191229");
|
||||
user_pref("browser.shell.checkDefaultBrowser", true);
|
||||
user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", true);
|
||||
user_pref("browser.shell.mostRecentDateSetAsDefault", "1611097620");
|
||||
user_pref("browser.slowStartup.averageTime", 0);
|
||||
user_pref("browser.slowStartup.samples", 0);
|
||||
user_pref("browser.shell.mostRecentDateSetAsDefault", "1615682225");
|
||||
user_pref("browser.slowStartup.averageTime", 2467);
|
||||
user_pref("browser.slowStartup.samples", 4);
|
||||
user_pref("browser.startup.homepage", "moz-extension://f393b4c4-359a-4d1e-b377-fd4b41112e16/index.html");
|
||||
user_pref("browser.startup.homepage_override.buildID", "20210107154745");
|
||||
user_pref("browser.startup.homepage_override.buildID", "20210313191229");
|
||||
user_pref("browser.startup.homepage_override.extensionControlled", true);
|
||||
user_pref("browser.startup.homepage_override.mstone", "84.0.2");
|
||||
user_pref("browser.startup.homepage_override.mstone", "86.0.1");
|
||||
user_pref("browser.startup.homepage_override.privateAllowed", true);
|
||||
user_pref("browser.startup.lastColdStartupCheck", 1611097619);
|
||||
user_pref("browser.startup.lastColdStartupCheck", 1615682224);
|
||||
user_pref("browser.startup.page", 3);
|
||||
user_pref("browser.tabs.drawInTitlebar", false);
|
||||
user_pref("browser.tabs.extraDragSpace", true);
|
||||
|
@ -99,7 +102,7 @@ user_pref("devtools.toolsidebar-width.inspector.splitsidebar", 350);
|
|||
user_pref("devtools.webextensions.https-everywhere@eff.org.enabled", true);
|
||||
user_pref("distribution.Manjaro.bookmarksProcessed", true);
|
||||
user_pref("distribution.archlinux.bookmarksProcessed", true);
|
||||
user_pref("distribution.iniFile.exists.appversion", "84.0.2");
|
||||
user_pref("distribution.iniFile.exists.appversion", "86.0.1");
|
||||
user_pref("distribution.iniFile.exists.value", true);
|
||||
user_pref("distribution.manjaro.bookmarksProcessed", true);
|
||||
user_pref("doh-rollout.balrog-migration-done", true);
|
||||
|
@ -107,7 +110,7 @@ user_pref("doh-rollout.doneFirstRun", true);
|
|||
user_pref("doh-rollout.doorhanger-decision", "UIOk");
|
||||
user_pref("doh-rollout.mode", 2);
|
||||
user_pref("doh-rollout.self-enabled", true);
|
||||
user_pref("dom.push.userAgentID", "f5abd17aff1a4d769a270e8ed28f9a91");
|
||||
user_pref("dom.push.userAgentID", "abe24c5a23784d76ac28f48d28cf81ab");
|
||||
user_pref("dom.security.https_only_mode", true);
|
||||
user_pref("dom.security.https_only_mode_ever_enabled", true);
|
||||
user_pref("extensions.activeThemeID", "default-theme@mozilla.org");
|
||||
|
@ -115,16 +118,17 @@ user_pref("extensions.blocklist.lastModified", "Sat, 09 Nov 2019 17:49:50 GMT");
|
|||
user_pref("extensions.blocklist.pingCountTotal", 34);
|
||||
user_pref("extensions.blocklist.pingCountVersion", -1);
|
||||
user_pref("extensions.databaseSchema", 33);
|
||||
user_pref("extensions.getAddons.cache.lastUpdate", 1611097649);
|
||||
user_pref("extensions.getAddons.cache.lastUpdate", 1613762581);
|
||||
user_pref("extensions.getAddons.databaseSchema", 6);
|
||||
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
||||
user_pref("extensions.incognito.migrated", true);
|
||||
user_pref("extensions.lastAppBuildId", "20201126174332");
|
||||
user_pref("extensions.lastAppVersion", "84.0.2");
|
||||
user_pref("extensions.lastPlatformVersion", "84.0.2");
|
||||
user_pref("extensions.lastAppBuildId", "20210313191229");
|
||||
user_pref("extensions.lastAppVersion", "86.0.1");
|
||||
user_pref("extensions.lastPlatformVersion", "86.0.1");
|
||||
user_pref("extensions.pendingOperations", false);
|
||||
user_pref("extensions.pocket.enabled", false);
|
||||
user_pref("extensions.pocket.settings.test.panelSignUp", "control");
|
||||
user_pref("extensions.reset_default_search.runonce.1", true);
|
||||
user_pref("extensions.systemAddonSet", "{\"schema\":1,\"addons\":{}}");
|
||||
user_pref("extensions.ui.dictionary.hidden", true);
|
||||
user_pref("extensions.ui.extension.hidden", false);
|
||||
|
@ -145,8 +149,11 @@ user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.{5173bfae-59df-
|
|||
user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.{9350bc42-47fb-4598-ae0f-825e3dd9ceba}", true);
|
||||
user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.{b7f9d2cd-d772-4302-8c3f-eb941af36f76}", true);
|
||||
user_pref("extensions.webextensions.ExtensionStorageIDB.migrated.{b9db16a4-6edc-47ec-a1f4-b86292ed211d}", true);
|
||||
user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"a4d7ec28-e851-41cc-919e-4b6abfc4ac31\",\"webcompat@mozilla.org\":\"67be70b1-004e-4ced-a5cb-abcdb80ecc30\",\"screenshots@mozilla.org\":\"8889019e-8528-4d46-b076-7c13a2232811\",\"uBlock0@raymondhill.net\":\"90be17cd-7169-4943-9a04-3cd8bf7fec41\",\"jid1-MnnxcxisBPnSXQ@jetpack\":\"d439fe79-e9bd-449b-b9ec-cc2b271f80c0\",\"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}\":\"dbb00a92-98b5-481a-8acc-56821f5c1539\",\"chrome-gnome-shell@gnome.org\":\"256c7ceb-2fd8-4e47-bdc3-cb06c28a2511\",\"wayback_machine@mozilla.org\":\"2f4890c9-7ffb-4c51-a3fe-9d7425f7ed15\",\"webcompat-reporter@mozilla.org\":\"2e83e420-d979-4787-9557-97f647d6315f\",\"fxmonitor@mozilla.org\":\"bd2839c5-8e0a-4e41-8c53-eefcc4875ae8\",\"yayanotherspeeddial@bakadev.fr\":\"f393b4c4-359a-4d1e-b377-fd4b41112e16\",\"baidu-code-update@mozillaonline.com\":\"f61cd0cf-a1d5-4113-8587-06e29e05637e\",\"default-theme@mozilla.org\":\"d2155536-c685-43df-be0f-018f123a12ed\",\"amazondotcom@search.mozilla.org\":\"8c0e7741-4192-47e1-9708-c9e259d0eaca\",\"bing@search.mozilla.org\":\"f5fe6ae3-339f-451e-984b-978668f8d2c4\",\"google@search.mozilla.org\":\"67356cdf-8ebd-41fd-b1cf-1c7c9584f8cc\",\"twitter@search.mozilla.org\":\"428eea81-75ef-4cb4-a60c-214f60fd583a\",\"wikipedia@search.mozilla.org\":\"8fa903b1-4c90-43ff-b079-874114d35423\",\"ddg@search.mozilla.org\":\"99023558-25b2-45f6-80b1-163f50505cd4\",\"doh-rollout@mozilla.org\":\"e6166d48-3218-457c-98d3-9b70f0b85e32\",\"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}\":\"26d6ad01-a771-4b46-9e35-342122037141\",\"ebay@search.mozilla.org\":\"868d2b79-8a51-44b4-9543-d98ddc3608d7\",\"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}\":\"c4a416bf-fe77-41cc-92a4-402cc6c6f9c9\",\"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}\":\"5fa9f4d9-b1b6-436a-976d-16c0d1f6a207\",\"keepassxc-browser@keepassxc.org\":\"ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04\"}");
|
||||
user_pref("font.internaluseonly.changed", false);
|
||||
user_pref("extensions.webextensions.uuids", "{\"formautofill@mozilla.org\":\"a4d7ec28-e851-41cc-919e-4b6abfc4ac31\",\"webcompat@mozilla.org\":\"67be70b1-004e-4ced-a5cb-abcdb80ecc30\",\"screenshots@mozilla.org\":\"8889019e-8528-4d46-b076-7c13a2232811\",\"uBlock0@raymondhill.net\":\"90be17cd-7169-4943-9a04-3cd8bf7fec41\",\"jid1-MnnxcxisBPnSXQ@jetpack\":\"d439fe79-e9bd-449b-b9ec-cc2b271f80c0\",\"{9350bc42-47fb-4598-ae0f-825e3dd9ceba}\":\"dbb00a92-98b5-481a-8acc-56821f5c1539\",\"chrome-gnome-shell@gnome.org\":\"256c7ceb-2fd8-4e47-bdc3-cb06c28a2511\",\"wayback_machine@mozilla.org\":\"2f4890c9-7ffb-4c51-a3fe-9d7425f7ed15\",\"webcompat-reporter@mozilla.org\":\"2e83e420-d979-4787-9557-97f647d6315f\",\"fxmonitor@mozilla.org\":\"bd2839c5-8e0a-4e41-8c53-eefcc4875ae8\",\"yayanotherspeeddial@bakadev.fr\":\"f393b4c4-359a-4d1e-b377-fd4b41112e16\",\"baidu-code-update@mozillaonline.com\":\"f61cd0cf-a1d5-4113-8587-06e29e05637e\",\"default-theme@mozilla.org\":\"d2155536-c685-43df-be0f-018f123a12ed\",\"amazondotcom@search.mozilla.org\":\"8c0e7741-4192-47e1-9708-c9e259d0eaca\",\"bing@search.mozilla.org\":\"f5fe6ae3-339f-451e-984b-978668f8d2c4\",\"google@search.mozilla.org\":\"67356cdf-8ebd-41fd-b1cf-1c7c9584f8cc\",\"twitter@search.mozilla.org\":\"428eea81-75ef-4cb4-a60c-214f60fd583a\",\"wikipedia@search.mozilla.org\":\"8fa903b1-4c90-43ff-b079-874114d35423\",\"ddg@search.mozilla.org\":\"99023558-25b2-45f6-80b1-163f50505cd4\",\"doh-rollout@mozilla.org\":\"e6166d48-3218-457c-98d3-9b70f0b85e32\",\"{b9db16a4-6edc-47ec-a1f4-b86292ed211d}\":\"26d6ad01-a771-4b46-9e35-342122037141\",\"ebay@search.mozilla.org\":\"868d2b79-8a51-44b4-9543-d98ddc3608d7\",\"{b7f9d2cd-d772-4302-8c3f-eb941af36f76}\":\"c4a416bf-fe77-41cc-92a4-402cc6c6f9c9\",\"{5173bfae-59df-4a20-a9dd-0ab3e8c82e36}\":\"5fa9f4d9-b1b6-436a-976d-16c0d1f6a207\",\"keepassxc-browser@keepassxc.org\":\"ac01c99c-ee6d-49f3-bbce-5ef76b0c7c04\",\"reset-search-defaults@mozilla.com\":\"624a06c5-a250-496d-a0ac-dab6e94b4ce6\"}");
|
||||
user_pref("fission.experiment.max-origins.last-disqualified", 0);
|
||||
user_pref("fission.experiment.max-origins.last-qualified", 1615681990);
|
||||
user_pref("fission.experiment.max-origins.qualified", true);
|
||||
user_pref("font.internaluseonly.changed", true);
|
||||
user_pref("font.name.serif.x-western", "Ubuntu Condensed");
|
||||
user_pref("general.smoothScroll.mouseWheel.migrationPercent", 0);
|
||||
user_pref("geo.enabled", false);
|
||||
|
@ -154,16 +161,17 @@ user_pref("gfx.blacklist.layers.opengl", 4);
|
|||
user_pref("gfx.blacklist.layers.opengl.failureid", "FEATURE_FAILURE_SOFTWARE_GL");
|
||||
user_pref("identity.fxaccounts.enabled", false);
|
||||
user_pref("identity.fxaccounts.toolbar.accessed", true);
|
||||
user_pref("idle.lastDailyNotification", 1611097763);
|
||||
user_pref("idle.lastDailyNotification", 1613762080);
|
||||
user_pref("lightweightThemes.usedThemes", "[]");
|
||||
user_pref("media.benchmark.vp9.fps", 102);
|
||||
user_pref("media.benchmark.vp9.versioncheck", 5);
|
||||
user_pref("media.gmp-gmpopenh264.abi", "x86_64-gcc3");
|
||||
user_pref("media.gmp-gmpopenh264.lastUpdate", 1572996640);
|
||||
user_pref("media.gmp-gmpopenh264.version", "1.8.1.1");
|
||||
user_pref("media.gmp-manager.buildID", "20210107154745");
|
||||
user_pref("media.gmp-manager.lastCheck", 1611097723);
|
||||
user_pref("media.gmp-manager.buildID", "20210210003430");
|
||||
user_pref("media.gmp-manager.lastCheck", 1613761988);
|
||||
user_pref("media.gmp.storage.version.observed", 1);
|
||||
user_pref("network.cookie.cookieBehavior", 5);
|
||||
user_pref("network.dns.disablePrefetch", true);
|
||||
user_pref("network.http.speculative-parallel-limit", 0);
|
||||
user_pref("network.predictor.cleaned-up", true);
|
||||
|
@ -174,56 +182,57 @@ user_pref("pdfjs.enabledCache.state", true);
|
|||
user_pref("pdfjs.migrationVersion", 2);
|
||||
user_pref("pdfjs.previousHandler.alwaysAskBeforeHandling", true);
|
||||
user_pref("pdfjs.previousHandler.preferredAction", 4);
|
||||
user_pref("places.database.lastMaintenance", 1611097763);
|
||||
user_pref("places.history.expiration.transient_current_max_pages", 84803);
|
||||
user_pref("places.database.lastMaintenance", 1613762080);
|
||||
user_pref("places.history.expiration.transient_current_max_pages", 112348);
|
||||
user_pref("plugin.disable_full_page_plugin_for_types", "application/pdf");
|
||||
user_pref("privacy.annotate_channels.strict_list.enabled", true);
|
||||
user_pref("privacy.cpd.offlineApps", true);
|
||||
user_pref("privacy.cpd.siteSettings", true);
|
||||
user_pref("privacy.purge_trackers.date_in_cookie_database", "0");
|
||||
user_pref("privacy.purge_trackers.last_purge", "1611097763522");
|
||||
user_pref("privacy.purge_trackers.last_purge", "1613762080553");
|
||||
user_pref("privacy.sanitize.pending", "[]");
|
||||
user_pref("privacy.sanitize.timeSpan", 0);
|
||||
user_pref("privacy.trackingprotection.enabled", true);
|
||||
user_pref("privacy.trackingprotection.socialtracking.enabled", true);
|
||||
user_pref("security.remote_settings.crlite_filters.checked", 1608567143);
|
||||
user_pref("security.remote_settings.intermediates.checked", 1608567143);
|
||||
user_pref("security.remote_settings.crlite_filters.checked", 1613762220);
|
||||
user_pref("security.remote_settings.intermediates.checked", 1613762220);
|
||||
user_pref("security.sandbox.content.tempDirSuffix", "62ec57d4-3516-41bf-957e-19cd307d5b61");
|
||||
user_pref("security.sandbox.plugin.tempDirSuffix", "851284ee-3855-4de7-86af-976adc3a2c11");
|
||||
user_pref("services.blocklist.addons-mlbf.checked", 1611097622);
|
||||
user_pref("services.blocklist.addons-mlbf.checked", 1615682676);
|
||||
user_pref("services.blocklist.addons.checked", 1598664411);
|
||||
user_pref("services.blocklist.gfx.checked", 1611097622);
|
||||
user_pref("services.blocklist.gfx.checked", 1615682676);
|
||||
user_pref("services.blocklist.onecrl.checked", 1565793602);
|
||||
user_pref("services.blocklist.pinning.checked", 1608567143);
|
||||
user_pref("services.blocklist.plugins.checked", 1611097622);
|
||||
user_pref("services.settings.clock_skew_seconds", -1);
|
||||
user_pref("services.settings.last_etag", "\"1611086252115\"");
|
||||
user_pref("services.settings.last_update_seconds", 1611097622);
|
||||
user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1611097622);
|
||||
user_pref("services.settings.main.cfr-fxa.last_check", 1611097622);
|
||||
user_pref("services.settings.main.cfr.last_check", 1611097622);
|
||||
user_pref("services.settings.main.fxmonitor-breaches.last_check", 1611097622);
|
||||
user_pref("services.settings.main.hijack-blocklists.last_check", 1611097622);
|
||||
user_pref("services.settings.main.language-dictionaries.last_check", 1611097622);
|
||||
user_pref("services.settings.main.message-groups.last_check", 1611097622);
|
||||
user_pref("services.blocklist.pinning.checked", 1613762220);
|
||||
user_pref("services.blocklist.plugins.checked", 1615682676);
|
||||
user_pref("services.settings.clock_skew_seconds", -693);
|
||||
user_pref("services.settings.last_etag", "\"1615665497160\"");
|
||||
user_pref("services.settings.last_update_seconds", 1615682676);
|
||||
user_pref("services.settings.main.anti-tracking-url-decoration.last_check", 1615682676);
|
||||
user_pref("services.settings.main.cfr-fxa.last_check", 1615682676);
|
||||
user_pref("services.settings.main.cfr.last_check", 1615682676);
|
||||
user_pref("services.settings.main.fxmonitor-breaches.last_check", 1615682676);
|
||||
user_pref("services.settings.main.hijack-blocklists.last_check", 1615682676);
|
||||
user_pref("services.settings.main.language-dictionaries.last_check", 1615682676);
|
||||
user_pref("services.settings.main.message-groups.last_check", 1615682676);
|
||||
user_pref("services.settings.main.messaging-experiments.last_check", 1604995344);
|
||||
user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1611097622);
|
||||
user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1611097622);
|
||||
user_pref("services.settings.main.nimbus-desktop-experiments.last_check", 1615682676);
|
||||
user_pref("services.settings.main.normandy-recipes-capabilities.last_check", 1615682676);
|
||||
user_pref("services.settings.main.normandy-recipes.last_check", 1573409021);
|
||||
user_pref("services.settings.main.onboarding.last_check", 1565793602);
|
||||
user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1611097622);
|
||||
user_pref("services.settings.main.password-recipes.last_check", 1611097622);
|
||||
user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1611097622);
|
||||
user_pref("services.settings.main.pioneer-study-addons.last_check", 1611097622);
|
||||
user_pref("services.settings.main.public-suffix-list.last_check", 1611097622);
|
||||
user_pref("services.settings.main.search-config.last_check", 1611097622);
|
||||
user_pref("services.settings.main.search-default-override-allowlist.last_check", 1611097622);
|
||||
user_pref("services.settings.main.search-telemetry.last_check", 1611097622);
|
||||
user_pref("services.settings.main.sites-classification.last_check", 1611097622);
|
||||
user_pref("services.settings.main.tippytop.last_check", 1611097622);
|
||||
user_pref("services.settings.main.top-sites.last_check", 1611097622);
|
||||
user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1611097622);
|
||||
user_pref("services.settings.main.whats-new-panel.last_check", 1611097622);
|
||||
user_pref("services.settings.security.onecrl.checked", 1608567143);
|
||||
user_pref("services.settings.main.partitioning-exempt-urls.last_check", 1615682676);
|
||||
user_pref("services.settings.main.password-recipes.last_check", 1615682676);
|
||||
user_pref("services.settings.main.pioneer-study-addons-v1.last_check", 1615682676);
|
||||
user_pref("services.settings.main.pioneer-study-addons.last_check", 1615682676);
|
||||
user_pref("services.settings.main.public-suffix-list.last_check", 1615682676);
|
||||
user_pref("services.settings.main.search-config.last_check", 1615682676);
|
||||
user_pref("services.settings.main.search-default-override-allowlist.last_check", 1615682676);
|
||||
user_pref("services.settings.main.search-telemetry.last_check", 1615682676);
|
||||
user_pref("services.settings.main.sites-classification.last_check", 1615682676);
|
||||
user_pref("services.settings.main.tippytop.last_check", 1615682676);
|
||||
user_pref("services.settings.main.top-sites.last_check", 1615682676);
|
||||
user_pref("services.settings.main.url-classifier-skip-urls.last_check", 1615682676);
|
||||
user_pref("services.settings.main.whats-new-panel.last_check", 1615682676);
|
||||
user_pref("services.settings.security.onecrl.checked", 1613762220);
|
||||
user_pref("services.sync.clients.lastSync", "0");
|
||||
user_pref("services.sync.declinedEngines", "");
|
||||
user_pref("services.sync.globalScore", 0);
|
||||
|
@ -231,9 +240,9 @@ user_pref("services.sync.nextSync", 0);
|
|||
user_pref("services.sync.tabs.lastSync", "0");
|
||||
user_pref("signon.importedFromSqlite", true);
|
||||
user_pref("signon.usage.hasEntry", false);
|
||||
user_pref("storage.vacuum.last.index", 1);
|
||||
user_pref("storage.vacuum.last.places.sqlite", 1608565394);
|
||||
user_pref("toolkit.startup.last_success", 1611097615);
|
||||
user_pref("storage.vacuum.last.index", 0);
|
||||
user_pref("storage.vacuum.last.places.sqlite", 1613762080);
|
||||
user_pref("toolkit.startup.last_success", 1615682223);
|
||||
user_pref("toolkit.telemetry.archive.enabled", false);
|
||||
user_pref("toolkit.telemetry.bhrPing.enabled", false);
|
||||
user_pref("toolkit.telemetry.cachedClientID", "c0ffeec0-ffee-c0ff-eec0-ffeec0ffeec0");
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user