2017-09-15 17:51:14 +02:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Displays focused i3 window title.
|
|
|
|
|
|
|
|
Requirements:
|
|
|
|
* i3ipc
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
* title.max : Maximum character length for title before truncating. Defaults to 64.
|
|
|
|
* title.placeholder : Placeholder text to be placed if title was truncated. Defaults to "...".
|
2017-09-16 01:46:24 +02:00
|
|
|
* title.scroll : Boolean flag for scrolling title. Defaults to False
|
2017-09-15 17:51:14 +02:00
|
|
|
"""
|
|
|
|
|
2019-08-24 15:01:40 +02:00
|
|
|
import threading
|
|
|
|
|
2017-09-15 17:51:14 +02:00
|
|
|
try:
|
|
|
|
import i3ipc
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
import bumblebee.util
|
|
|
|
import bumblebee.input
|
|
|
|
import bumblebee.output
|
|
|
|
import bumblebee.engine
|
|
|
|
|
2017-09-16 01:46:24 +02:00
|
|
|
from bumblebee.output import scrollable
|
|
|
|
|
2019-08-24 15:01:40 +02:00
|
|
|
_no_title = "n/a"
|
2017-10-27 10:42:10 +02:00
|
|
|
|
2017-09-15 17:51:14 +02:00
|
|
|
class Module(bumblebee.engine.Module):
|
|
|
|
"""Window title module."""
|
|
|
|
|
|
|
|
def __init__(self, engine, config):
|
2017-09-15 18:03:58 +02:00
|
|
|
super(Module, self).__init__(
|
|
|
|
engine,
|
2019-08-24 15:01:40 +02:00
|
|
|
config
|
2017-09-15 17:51:14 +02:00
|
|
|
)
|
2019-08-24 15:01:40 +02:00
|
|
|
|
|
|
|
# parsing of parameters
|
|
|
|
self._scroll = bumblebee.util.asbool(self.parameter("scroll", False))
|
|
|
|
self._max = int(self.parameter("max", 64))
|
|
|
|
self._placeholder = self.parameter("placeholder", "...")
|
|
|
|
|
|
|
|
# set output of the module
|
|
|
|
self.widgets(bumblebee.output.Widget(full_text=
|
|
|
|
self._scrolling_focused_title if self._scroll else self._focused_title))
|
|
|
|
|
|
|
|
# create a connection with i3ipc
|
2017-09-15 20:05:09 +02:00
|
|
|
try:
|
|
|
|
self._i3 = i3ipc.Connection()
|
2019-08-24 15:01:40 +02:00
|
|
|
# event is called both on focus change and title change
|
|
|
|
self._i3.on("window", lambda _p_i3, _p_e: self._pollTitle())
|
|
|
|
# begin listening for events
|
|
|
|
threading.Thread(target=self._i3.main).start()
|
|
|
|
except:
|
|
|
|
pass
|
2017-09-16 01:46:24 +02:00
|
|
|
|
2019-08-24 15:01:40 +02:00
|
|
|
# initialize the first title
|
|
|
|
self._pollTitle()
|
2017-09-15 20:00:57 +02:00
|
|
|
|
2019-08-24 15:01:40 +02:00
|
|
|
def _focused_title(self, widget):
|
|
|
|
return self._title
|
2017-09-15 17:51:14 +02:00
|
|
|
|
2017-09-16 01:46:24 +02:00
|
|
|
@scrollable
|
2019-08-24 15:01:40 +02:00
|
|
|
def _scrolling_focused_title(self, widget):
|
2017-09-16 01:46:24 +02:00
|
|
|
return self._full_title
|
|
|
|
|
2019-08-24 15:01:40 +02:00
|
|
|
def _pollTitle(self):
|
|
|
|
"""Updating current title."""
|
2017-09-15 20:05:09 +02:00
|
|
|
try:
|
|
|
|
self._full_title = self._i3.get_tree().find_focused().name
|
2019-08-24 15:01:40 +02:00
|
|
|
except:
|
|
|
|
self._full_title = _no_title
|
2018-06-04 15:03:39 +02:00
|
|
|
if self._full_title is None:
|
2019-08-24 15:01:40 +02:00
|
|
|
self._full_title = _no_title
|
|
|
|
|
|
|
|
if not self._scroll:
|
|
|
|
# cut the text if it is too long
|
|
|
|
if len(self._full_title) > self._max:
|
|
|
|
self._title = self._full_title[0:self._max - len(self._placeholder)]
|
|
|
|
self._title = "{}{}".format(self._title, self._placeholder)
|
|
|
|
else:
|
|
|
|
self._title = self._full_title
|
2017-09-15 17:51:14 +02:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|