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:
@@ -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' }),
|
||||
|
||||
Reference in New Issue
Block a user