Updating 46/hibernate-status to version 1.16~rc1 [d56e571].
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
f704928a56
commit
3a5d3fc8f3
2 changed files with 17 additions and 3 deletions
|
@ -219,6 +219,22 @@ export default class HibernateButtonExtension extends Extension {
|
||||||
|
|
||||||
_updateDefaults() {
|
_updateDefaults() {
|
||||||
console.log("Update defaults");
|
console.log("Update defaults");
|
||||||
|
let menuItems = this.systemMenu._systemItem.menu._getMenuItems()
|
||||||
|
for (let menuItem of menuItems) {
|
||||||
|
console.log(menuItem.label.get_text())
|
||||||
|
if ( menuItem.label.get_text() === _('Suspend') ) {
|
||||||
|
console.log(`Show suspend button: ${this._setting.get_boolean('show-suspend')}`)
|
||||||
|
menuItem.visible = this._setting.get_boolean('show-suspend');
|
||||||
|
}
|
||||||
|
if ( menuItem.label.get_text() === _('Restart…') ) {
|
||||||
|
console.log(`Show restart button: ${this._setting.get_boolean('show-restart')}`)
|
||||||
|
menuItem.visible = this._setting.get_boolean('show-restart');
|
||||||
|
}
|
||||||
|
if ( menuItem.label.get_text() === _('Power Off…') ) {
|
||||||
|
console.log(`Show shutdown button: ${this._setting.get_boolean('show-shutdown')}`)
|
||||||
|
menuItem.visible = this._setting.get_boolean('show-shutdown');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_onHibernateClicked() {
|
_onHibernateClicked() {
|
||||||
|
@ -571,3 +587,4 @@ var ConfirmDialog = GObject.registerClass(
|
||||||
);
|
);
|
||||||
|
|
||||||
const _DIALOG_ICON_SIZE = 32;
|
const _DIALOG_ICON_SIZE = 32;
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,6 @@ export default class Prefs extends ExtensionPreferences {
|
||||||
|
|
||||||
const suspend_row = new Adw.SwitchRow({
|
const suspend_row = new Adw.SwitchRow({
|
||||||
title: __('Suspend'),
|
title: __('Suspend'),
|
||||||
subtitle: __('Not implemented yet'),
|
|
||||||
});
|
});
|
||||||
modes_group.add(suspend_row);
|
modes_group.add(suspend_row);
|
||||||
const hibernate_row = new Adw.SwitchRow({
|
const hibernate_row = new Adw.SwitchRow({
|
||||||
|
@ -118,12 +117,10 @@ export default class Prefs extends ExtensionPreferences {
|
||||||
modes_group.add(suspend_then_hibernate_row);
|
modes_group.add(suspend_then_hibernate_row);
|
||||||
const restart_row = new Adw.SwitchRow({
|
const restart_row = new Adw.SwitchRow({
|
||||||
title: __('Restart...'),
|
title: __('Restart...'),
|
||||||
subtitle: __('Not implemented yet'),
|
|
||||||
});
|
});
|
||||||
modes_group.add(restart_row);
|
modes_group.add(restart_row);
|
||||||
const shutdown_row = new Adw.SwitchRow({
|
const shutdown_row = new Adw.SwitchRow({
|
||||||
title: __('Shutdown...'),
|
title: __('Shutdown...'),
|
||||||
subtitle: __('Not implemented yet'),
|
|
||||||
});
|
});
|
||||||
modes_group.add(shutdown_row);
|
modes_group.add(shutdown_row);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue