Source code for libqtile.widget.caps_num_lock_indicator

# -*- coding: utf-8 -*-
# Copyright (C) 2018 Juan Riquelme González
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

import re
import subprocess

from libqtile.widget import base


[docs]class CapsNumLockIndicator(base.ThreadPoolText): """Really simple widget to show the current Caps/Num Lock state.""" orientations = base.ORIENTATION_HORIZONTAL defaults = [('update_interval', 0.5, 'Update Time in seconds.')] def __init__(self, **config): base.ThreadPoolText.__init__(self, "", **config) self.add_defaults(CapsNumLockIndicator.defaults) def get_indicators(self): """Return a list with the current state of the keys.""" try: output = self.call_process(['xset', 'q']) except subprocess.CalledProcessError as err: output = err.output.decode() if output.startswith("Keyboard"): indicators = re.findall(r"(Caps|Num)\s+Lock:\s*(\w*)", output) return indicators def poll(self): """Poll content for the text box.""" indicators = self.get_indicators() status = " ".join([" ".join(indicator) for indicator in indicators]) return status