[modules/layout] Remove parameter for language configuration

Switch layout module to do full auto-detection by parsing the output of
xrandr -query.

fixes #177
This commit is contained in:
Tobias Witek 2017-09-19 09:15:36 +02:00
parent 9365e5b18a
commit 18131a3efe

View file

@ -4,9 +4,6 @@
Requires the following executable: Requires the following executable:
* setxkbmap * setxkbmap
Parameters:
* layout.lang: pipe-separated list of languages to cycle through (e.g. us|rs|de). Default: en
""" """
import bumblebee.util import bumblebee.util
@ -17,58 +14,59 @@ import bumblebee.engine
class Module(bumblebee.engine.Module): class Module(bumblebee.engine.Module):
def __init__(self, engine, config): def __init__(self, engine, config):
super(Module, self).__init__(engine, config, super(Module, self).__init__(engine, config,
bumblebee.output.Widget(full_text=self.layout) bumblebee.output.Widget(full_text=self.current_layout)
) )
self._languages = self.parameter("lang", "us").split("|")
self._idx = 0
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE, engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE,
cmd=self._next_keymap) cmd=self._next_keymap)
engine.input.register_callback(self, button=bumblebee.input.RIGHT_MOUSE, engine.input.register_callback(self, button=bumblebee.input.RIGHT_MOUSE,
cmd=self._prev_keymap) cmd=self._prev_keymap)
def _next_keymap(self, event): def _next_keymap(self, event):
self._idx = (self._idx + 1) % len(self._languages) self._set_keymap(1)
self._set_keymap()
def _prev_keymap(self, event): def _prev_keymap(self, event):
self._idx = self._idx - 1 if self._idx > 0 else len(self._languages) - 1 self._set_keymap(-1)
self._set_keymap()
def _set_keymap(self, rotation):
layouts = self.get_layouts()
if len(layouts) == 1: return # nothing to do
layouts = layouts[rotation:] + layouts[:rotation]
layout_list = []
variant_list = []
for l in layouts:
tmp = l.split(":")
layout_list.append(tmp[0])
variant_list.append(tmp[1] if len(tmp) > 1 else "")
def _set_keymap(self):
tmp = self._languages[self._idx].split(":")
layout = tmp[0]
variant = ""
if len(tmp) > 1:
variant = "-variant {}".format(tmp[1])
try: try:
bumblebee.util.execute("setxkbmap -layout {} {}".format(layout, variant)) bumblebee.util.execute("setxkbmap -layout {} -variant {}".format(",".join(layout_list), ",".join(variant_list)))
except RuntimeError: except RuntimeError:
pass pass
def layout(self, widget): def get_layouts(self):
try: try:
res = bumblebee.util.execute("setxkbmap -query") res = bumblebee.util.execute("setxkbmap -query")
except RuntimeError: except RuntimeError:
return "n/a" return ["n/a"]
layout = "" layouts = []
variant = None variants = []
for line in res.split("\n"): for line in res.split("\n"):
if not line: if not line: continue
continue
if "layout" in line: if "layout" in line:
layout = line.split(":")[1].strip() layouts = line.split(":")[1].strip().split(",")
if "variant" in line: if "variant" in line:
variant = line.split(":")[1].strip() variants = line.split(":")[1].strip().split(",")
if variant:
layout += ":" + variant
if layout in self._languages: result = []
self._idx = self._languages.index(layout) for idx, layout in enumerate(layouts):
else: if len(variants) > idx and variants[idx]:
self._languages.append(layout) layout = "{}:{}".format(layout, variants[idx])
self._idx = len(self._languages) - 1 result.append(layout)
return result if len(result) > 0 else ["n/a"]
return layout def current_layout(self, widget):
layouts = self.get_layouts()
return layouts[0]
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4