mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-24 21:05:40 +02:00
module/battery: poll-interval = 0 now disables polling
This commit is contained in:
parent
bdc5dea428
commit
86e6aea152
2 changed files with 2 additions and 2 deletions
|
@ -258,7 +258,7 @@ uses *udev* to monitor for changes.
|
||||||
| poll-interval
|
| poll-interval
|
||||||
: int
|
: int
|
||||||
: no
|
: no
|
||||||
: How often, in seconds, to poll for capacity changes (default=*60*)
|
: How often, in seconds, to poll for capacity changes (default=*60*). Set to `0` to disable polling (*warning*: many batteries do not support asynchronous reporting).
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
|
|
|
@ -337,7 +337,7 @@ run(struct module *mod)
|
||||||
{.fd = mod->abort_fd, .events = POLLIN},
|
{.fd = mod->abort_fd, .events = POLLIN},
|
||||||
{.fd = udev_monitor_get_fd(mon), .events = POLLIN},
|
{.fd = udev_monitor_get_fd(mon), .events = POLLIN},
|
||||||
};
|
};
|
||||||
poll(fds, 2, m->poll_interval * 1000);
|
poll(fds, 2, m->poll_interval > 0 ? m->poll_interval * 1000 : -1);
|
||||||
|
|
||||||
if (fds[0].revents & POLLIN) {
|
if (fds[0].revents & POLLIN) {
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue