import libqtile.bar
from libqtile import hook, pangocffi
from libqtile.log_utils import logger
from libqtile.widget import base
[docs]
class WindowName(base._TextBox):
"""Displays the name of the window that currently has focus"""
defaults = [
("for_current_screen", False, "instead of this bars screen use currently active screen"),
(
"empty_group_string",
" ",
"string to display when no windows are focused on current group",
),
("format", "{state}{name}", "format of the text"),
(
"parse_text",
None,
"Function to parse and modify window names. "
"e.g. function in config that removes excess "
"strings from window name: "
"def my_func(text)"
' for string in [" - Chromium", " - Firefox"]:'
' text = text.replace(string, "")'
" return text"
"then set option parse_text=my_func",
),
(
"stretch",
True,
"Widget fills available space in bar. Set to ``False`` to limit widget width to size of its contents.",
),
]
def __init__(self, width=libqtile.bar.STRETCH, **config):
base._TextBox.__init__(self, width=width, **config)
self.add_defaults(WindowName.defaults)
def _configure(self, qtile, bar):
base._TextBox._configure(self, qtile, bar)
hook.subscribe.client_name_updated(self.hook_response)
hook.subscribe.focus_change(self.hook_response)
hook.subscribe.float_change(self.hook_response)
hook.subscribe.current_screen_change(self.hook_response_current_screen)
if not self.stretch:
self.length_type = libqtile.bar.CALCULATED
def remove_hooks(self):
hook.unsubscribe.client_name_updated(self.hook_response)
hook.unsubscribe.focus_change(self.hook_response)
hook.unsubscribe.float_change(self.hook_response)
hook.unsubscribe.current_screen_change(self.hook_response_current_screen)
def hook_response(self, *args):
if self.for_current_screen:
w = self.qtile.current_screen.group.current_window
else:
w = self.bar.screen.group.current_window
state = ""
if w:
if w.maximized:
state = "[] "
elif w.minimized:
state = "_ "
elif w.floating:
state = "V "
var = {}
var["state"] = state
var["name"] = w.name
if callable(self.parse_text):
try:
var["name"] = self.parse_text(var["name"])
except: # noqa: E722
logger.exception("parse_text function failed:")
wm_class = w.get_wm_class()
var["class"] = wm_class[0] if wm_class else ""
unescaped = self.format.format(**var)
else:
unescaped = self.empty_group_string
self.update(pangocffi.markup_escape_text(unescaped))
def hook_response_current_screen(self, *args):
if self.for_current_screen:
self.hook_response()
def finalize(self):
self.remove_hooks()
base._TextBox.finalize(self)