bumblebee-status/bumblebee_status/modules/contrib/layout.py

79 lines
2.2 KiB
Python
Raw Normal View History

2020-04-24 16:15:42 +02:00
# pylint: disable=C0111,R0903
"""Displays and changes the current keyboard layout
Requires the following executable:
* setxkbmap
contributed by `Pseudonick47 <https://github.com/Pseudonick47>`_ - many thanks!
2020-04-24 16:15:42 +02:00
"""
2020-04-24 16:18:19 +02:00
import core.module
import core.widget
import core.input
2020-04-24 16:15:42 +02:00
2020-04-24 16:18:19 +02:00
import util.cli
2020-04-24 16:15:42 +02:00
2020-04-24 16:18:19 +02:00
class Module(core.module.Module):
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.current_layout))
2020-04-24 16:18:19 +02:00
core.input.register(self, button=core.input.LEFT_MOUSE, cmd=self.__next_keymap)
core.input.register(self, button=core.input.RIGHT_MOUSE, cmd=self.__prev_keymap)
2020-04-24 16:18:19 +02:00
def __next_keymap(self, event):
2020-04-24 16:15:42 +02:00
self._set_keymap(1)
2020-04-24 16:18:19 +02:00
def __prev_keymap(self, event):
2020-04-24 16:15:42 +02:00
self._set_keymap(-1)
def _set_keymap(self, rotation):
layouts = self.get_layouts()
if len(layouts) == 1:
return # nothing to do
2020-04-24 16:15:42 +02:00
layouts = layouts[rotation:] + layouts[:rotation]
layout_list = []
variant_list = []
for l in layouts:
tmp = l.split(":")
2020-04-24 16:15:42 +02:00
layout_list.append(tmp[0])
variant_list.append(tmp[1] if len(tmp) > 1 else "")
2020-04-24 16:15:42 +02:00
util.cli.execute(
"setxkbmap -layout {} -variant {}".format(
",".join(layout_list), ",".join(variant_list)
),
ignore_errors=True,
)
2020-04-24 16:15:42 +02:00
def get_layouts(self):
try:
res = util.cli.execute("setxkbmap -query")
2020-04-24 16:15:42 +02:00
except RuntimeError:
return ["n/a"]
2020-04-24 16:15:42 +02:00
layouts = []
variants = []
for line in res.split("\n"):
if not line:
continue
if "layout" in line:
layouts = line.split(":")[1].strip().split(",")
if "variant" in line:
variants = line.split(":")[1].strip().split(",")
2020-04-24 16:15:42 +02:00
result = []
for idx, layout in enumerate(layouts):
if len(variants) > idx and variants[idx]:
layout = "{}:{}".format(layout, variants[idx])
2020-04-24 16:15:42 +02:00
result.append(layout)
return result if len(result) > 0 else ["n/a"]
2020-04-24 16:15:42 +02:00
def current_layout(self, widget):
layouts = self.get_layouts()
return layouts[0]
2020-04-24 16:15:42 +02:00
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4