[engine] Fix interval configuration
Until now, manually specifying an interval did not work, as a cast to float was missing. Now, it's possible to specify an update interval in seconds via "-p interval=<interval>" fixes #54
This commit is contained in:
parent
b710900875
commit
b20e83cb8a
2 changed files with 6 additions and 1 deletions
|
@ -51,6 +51,11 @@ $ ./bumblebee-status -l themes
|
|||
$ ./bumblebee-status -l modules
|
||||
```
|
||||
|
||||
To change the update interval, use:
|
||||
```
|
||||
$ ./bumblebee-status -m <list of modules> -p interval=<interval in seconds>
|
||||
```
|
||||
|
||||
As a simple example, this is what my i3 configuration looks like:
|
||||
|
||||
```
|
||||
|
|
|
@ -158,7 +158,7 @@ class Engine(object):
|
|||
self._output.flush()
|
||||
self._output.end()
|
||||
if self.running():
|
||||
self.input.wait(self._config.get("interval", 1))
|
||||
self.input.wait(float(self._config.get("interval", 1)))
|
||||
|
||||
self._output.stop()
|
||||
self.input.stop()
|
||||
|
|
Loading…
Reference in a new issue