2017-10-05 02:46:09 +02:00
# Batteryarc widget
2017-10-09 23:14:03 +02:00
2020-09-30 17:25:22 +02:00
[![GitHub issues by-label ](https://img.shields.io/github/issues-raw/streetturtle/awesome-wm-widgets/batteryarc )](https://github.com/streetturtle/awesome-wm-widgets/labels/batteryarc)
2017-10-09 23:14:03 +02:00
This widget is more informative version of [battery widget ](https://github.com/streetturtle/awesome-wm-widgets/tree/master/battery-widget ).
Depending of the battery status it could look following ways:
- ![10_d ](./10_d.png ) - less than 15 percent
- ![10_c ](./10_c.png ) - less than 15 percent, charging
- ![20_d ](./20_d.png ) - between 15 and 40 percent
- ![20_c ](./20_c.png ) - between 15 and 40 percent, charging
- ![80_d ](./80_d.png ) - more than 40 percent
- ![80_c ](./80_c.png ) - more than 40 percent, charging
2019-06-02 04:55:13 +02:00
If a battery level is low then warning popup will show up:
2017-10-09 23:14:03 +02:00
2019-06-02 04:55:13 +02:00
![warning ](./warning.png )
## Customization
It is possible to customize widget by providing a table with all or some of the following config parameters:
| Name | Default | Description |
|---|---|---|
2023-09-21 00:01:55 +02:00
| `font` | `Play 6` | Font |
2019-06-03 04:05:06 +02:00
| `arc_thickness` | 2 | Thickness of the arc |
| `show_current_level` | false | Show current charge level |
2020-05-13 04:12:20 +02:00
| `size` | 18 | Size of the widget |
2020-09-19 10:22:27 +02:00
| `timeout` | 10 | How often in seconds the widget refreshes |
2019-06-03 04:05:06 +02:00
| `main_color` | `beautiful.fg_color` | Color of the text with the current charge level and the arc |
2020-02-07 10:27:02 +01:00
| `bg_color` | `#ffffff11` | Color of the charge level background |
2020-05-11 14:17:47 +02:00
| `low_level_color` | `#e53935` | Arc color when battery charge is less that 15% |
| `medium_level_color` | `#c0ca33` | Arc color when battery charge is between 15% and 40% |
2020-05-29 09:24:04 +02:00
| `charging_color` | `#43a047` | Color of the circle inside the arc when charging |
2023-09-21 00:01:55 +02:00
| `warning_msg_title` | `Huston, we have a problem_` | Title of the warning popup |
| `warning_msg_text` | `Battery is dying` | Text of the warning popup |
2019-06-03 04:05:06 +02:00
| `warning_msg_position` | `bottom_right` | Position of the warning popup |
2023-09-21 00:01:55 +02:00
| `warning_msg_icon` | `~/.config/awesome/awesome-wm-widgets/batteryarc-widget/spaceman.jpg` | Icon of the warning popup |
| `enable_battery_warning` | true | Display low battery warning |
2020-11-20 16:44:42 +01:00
| `show_notification_mode` | `on_hover` | How to trigger a notification with the battery status: `on_hover` , `on_click` or `off` |
2022-04-11 23:26:01 +02:00
| `notification_position` | `top_left` | Where to show she notification when triggered. Values: `top_right` , `top_left` , `bottom_left` , `bottom_right` , `top_middle` , `bottom_middle` . (default `top_right` ) |
2017-10-09 23:14:03 +02:00
2020-03-04 13:30:53 +01:00
## Requirements
This widget requires the `acpi` command to be available to retrieve battery and
power information.
2017-10-09 23:14:03 +02:00
## Installation
Clone repo, include widget and use it in **rc.lua** :
```lua
2018-07-11 12:36:35 +02:00
local batteryarc_widget = require("awesome-wm-widgets.batteryarc-widget.batteryarc")
2017-10-09 23:14:03 +02:00
...
s.mytasklist, -- Middle widget
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
...
2019-06-02 15:46:41 +02:00
--[[default]]
batteryarc_widget(),
--[[or customized]]
batteryarc_widget({
show_current_level = true,
2020-02-13 20:46:07 +01:00
arc_thickness = 1,
2019-06-02 15:46:41 +02:00
}),
}
...
2017-10-09 23:14:03 +02:00
```
## Troubleshooting
2019-06-02 04:55:13 +02:00
In case of any doubts or questions please raise an [issue ](https://github.com/streetturtle/awesome-wm-widgets/issues/new ).