fix: add battery notif (#441)

* fix: waybar style battery msgs

* Revert "fix: waybar style battery msgs"

This reverts commit 924d998ddda6cb4becc87fabfd7958a0f7ecc773.

* fix: revert changes

---------

Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>
This commit is contained in:
Rubin Bhandari
2024-11-18 01:55:16 +05:45
committed by GitHub
parent 0028b9484e
commit ac794dccb0
5 changed files with 54 additions and 5 deletions

View File

@@ -17,6 +17,28 @@ export const PowerMenuSettings = (): Scrollable<Child, Attribute> => {
children: [
Header('Power Menu'),
Option({ opt: options.menus.power.showLabel, title: 'Show Label', type: 'boolean' }),
Option({
opt: options.menus.power.lowBatteryNotification,
title: 'Show Notification For Low Battery',
type: 'boolean',
}),
Option({
opt: options.menus.power.lowBatteryThreshold,
title: 'Battery Level For Notification',
type: 'number',
}),
Option({
opt: options.menus.power.lowBatteryNotificationTitle,
title: 'Low Battery Notification Title',
subtitle: 'Use $POWER_LEVEL To Show Battery Percent',
type: 'string',
}),
Option({
opt: options.menus.power.lowBatteryNotificationText,
title: 'Low Battery Notification Body',
subtitle: 'Use $POWER_LEVEL To Show Battery Percent',
type: 'string',
}),
Option({ opt: options.menus.power.confirmation, title: 'Confirmation Dialog', type: 'boolean' }),
Option({ opt: options.menus.power.shutdown, title: 'Shutdown Command', type: 'string' }),
Option({ opt: options.menus.power.reboot, title: 'Reboot Command', type: 'string' }),