import re
import shlex
from subprocess import PIPE, Popen
from typing import Any
from libqtile import configurable
from libqtile.log_utils import logger
RGB = re.compile(r"^#?([a-fA-F0-9]{3}|[a-fA-F0-9]{6})$")
class _Extension(configurable.Configurable):
"""Base Extension class"""
installed_extensions = [] # type: list
defaults = [
("font", "sans", "defines the font name to be used"),
("fontsize", None, "defines the font size to be used"),
("background", None, "defines the normal background color (#RGB or #RRGGBB)"),
("foreground", None, "defines the normal foreground color (#RGB or #RRGGBB)"),
("selected_background", None, "defines the selected background color (#RGB or #RRGGBB)"),
("selected_foreground", None, "defines the selected foreground color (#RGB or #RRGGBB)"),
]
def __init__(self, **config):
configurable.Configurable.__init__(self, **config)
self.add_defaults(_Extension.defaults)
_Extension.installed_extensions.append(self)
def _check_colors(self):
"""
dmenu needs colours to be in #rgb or #rrggbb format.
Checks colour value, removes invalid values and adds # if missing.
NB This should not be called in _Extension.__init__ as _Extension.global_defaults
may not have been set at this point.
"""
for c in ["background", "foreground", "selected_background", "selected_foreground"]:
col = getattr(self, c, None)
if col is None:
continue
if not isinstance(col, str) or not RGB.match(col):
logger.warning(
"Invalid extension '%s' color: %s. Must be #RGB or #RRGGBB string.", c, col
)
setattr(self, c, None)
continue
if not col.startswith("#"):
col = f"#{col}"
setattr(self, c, col)
def _configure(self, qtile):
self.qtile = qtile
self._check_colors()
def run(self):
"""
This method must be implemented by the subclasses.
"""
raise NotImplementedError()
[docs]
class RunCommand(_Extension):
"""
Run an arbitrary command.
Mostly useful as a superclass for more specific extensions that need to
interact with the qtile object.
Also consider simply using lazy.spawn() or writing a
`client <https://docs.qtile.org/en/latest/manual/commands/advanced.html#client-server-scripting-model>`_.
"""
defaults: list[tuple[str, Any, str]] = [
# NOTE: Do not use a list as a default value, since it would be shared
# among all the objects inheriting this class, and if one of them
# modified it, all the other objects would see the modified list;
# use a string or a tuple instead, which are immutable
("command", None, "the command to be launched (string or list with arguments)"),
]
def __init__(self, **config):
_Extension.__init__(self, **config)
self.add_defaults(RunCommand.defaults)
self.configured_command = None
def run(self):
"""
An extension can inherit this class, define configured_command and use
the process object by overriding this method and using super():
.. code-block:: python
def _configure(self, qtile):
Superclass._configure(self, qtile)
self.configured_command = "foo --bar"
def run(self):
process = super(Subclass, self).run()
"""
if self.configured_command:
if isinstance(self.configured_command, str):
self.configured_command = shlex.split(self.configured_command)
# Else assume that self.configured_command is already a sequence
else:
self.configured_command = self.command
return Popen(self.configured_command, stdout=PIPE, stdin=PIPE)