[gnome] Updating extensions, back to Forge

This commit is contained in:
2026-02-18 11:13:53 -05:00
parent 9d4dd2863c
commit ede0687e11
107 changed files with 9856 additions and 4216 deletions

View File

@ -27,11 +27,29 @@ class AppIndicatorGeneralPage extends Adw.PreferencesPage {
});
legacyTraySwitch.connect('notify::active', widget =>
this._settings.set_boolean(this._settingsKey.LEGACY_TRAY_ENABLED,
widget.get_active()));
this._settings.set_boolean(
this._settingsKey.LEGACY_TRAY_ENABLED,
widget.get_active()
)
);
this.group.add(legacyTraySwitch);
const compactModeSwitch = new Adw.SwitchRow({
title: _('Compact Mode'),
subtitle: _('Puts tray indicators closer together'),
active: this._settings.get_boolean(this._settingsKey.COMPACT_MODE_ENABLED),
});
compactModeSwitch.connect('notify::active', widget =>
this._settings.set_boolean(
this._settingsKey.COMPACT_MODE_ENABLED,
widget.get_active()
)
);
this.group.add(compactModeSwitch);
this._createSpinRow({
title: _('Opacity'),
settingsKey: this._settingsKey.ICON_OPACITY,