[module/title] Requirement update in README.md + linting

This commit is contained in:
Pier-Angelo Gaetani 2017-09-15 10:03:58 -06:00
parent 55f48d5618
commit 8bba1d1e0d
2 changed files with 6 additions and 3 deletions

View file

@ -108,6 +108,7 @@ Modules and commandline utilities are only required for modules, the core itself
* requests (for the modules 'weather', 'github', 'getcrypto', 'stock')
* power (for the module 'battery')
* dbus (for the module 'spotify')
* i3rpc (for the module 'title')
# Required commandline utilities

View file

@ -15,23 +15,25 @@ try:
except ImportError:
pass
import textwrap
import bumblebee.util
import bumblebee.input
import bumblebee.output
import bumblebee.engine
import textwrap
class Module(bumblebee.engine.Module):
"""Window title module."""
def __init__(self, engine, config):
super(Module, self).__init__(engine, config,
super(Module, self).__init__(
engine,
config,
bumblebee.output.Widget(full_text=self.focused_title)
)
self._i3 = i3ipc.Connection()
self._full_title = self._i3.get_tree().find_focused().name
def focused_title(self, widget):
def focused_title(self):
"""Truncates and returns proper-length title."""
return textwrap.shorten(
self._full_title,