2020-03-11 21:35:25 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
"""Shows a widget for each connected screen and allows the user to enable/disable screens.
|
2020-03-11 21:35:25 +01:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
* xrandr.overwrite_i3config: If set to 'true', this module assembles a new i3 config
|
2020-05-06 12:57:38 +02:00
|
|
|
every time a screen is enabled or disabled by taking the file '~/.config/i3/config.template'
|
|
|
|
and appending a file '~/.config/i3/config.<screen name>' for every screen.
|
2020-03-11 21:35:25 +01:00
|
|
|
* xrandr.autoupdate: If set to 'false', does *not* invoke xrandr automatically. Instead, the
|
2020-05-06 12:57:38 +02:00
|
|
|
module will only refresh when displays are enabled or disabled (defaults to true)
|
2020-07-25 17:47:31 +02:00
|
|
|
* xrandr.exclude: Comma-separated list of display name prefixes to exclude
|
2020-03-11 21:35:25 +01:00
|
|
|
|
|
|
|
Requires the following python module:
|
|
|
|
* (optional) i3 - if present, the need for updating the widget list is auto-detected
|
|
|
|
|
|
|
|
Requires the following executable:
|
|
|
|
* xrandr
|
2020-05-03 11:15:52 +02:00
|
|
|
"""
|
2020-03-11 21:35:25 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
2020-03-13 13:56:08 +01:00
|
|
|
import core.module
|
|
|
|
import core.input
|
2020-04-02 16:30:31 +02:00
|
|
|
import core.decorators
|
2020-03-13 13:56:08 +01:00
|
|
|
|
2020-05-10 12:52:20 +02:00
|
|
|
from bumblebee_status.discover import utility
|
|
|
|
|
2020-03-13 13:56:08 +01:00
|
|
|
import util.cli
|
|
|
|
import util.format
|
2020-03-11 21:35:25 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
import i3
|
2020-07-25 19:52:10 +02:00
|
|
|
except ModuleNotFoundError:
|
2020-03-11 21:35:25 +01:00
|
|
|
pass
|
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-03-13 13:56:08 +01:00
|
|
|
class Module(core.module.Module):
|
2020-05-03 11:15:52 +02:00
|
|
|
@core.decorators.every(seconds=5) # takes up to 5s to detect a new screen
|
2020-04-26 16:39:24 +02:00
|
|
|
def __init__(self, config, theme):
|
2020-05-10 12:52:20 +02:00
|
|
|
super().__init__(config, theme, [])
|
2020-03-13 13:56:08 +01:00
|
|
|
|
2020-07-25 17:47:31 +02:00
|
|
|
self._exclude = tuple(filter(len, self.parameter("exclude", "").split(",")))
|
2020-07-25 19:52:10 +02:00
|
|
|
self._active_displays = []
|
2020-05-03 11:15:52 +02:00
|
|
|
self._autoupdate = util.format.asbool(self.parameter("autoupdate", True))
|
2020-03-11 21:35:25 +01:00
|
|
|
self._needs_update = True
|
|
|
|
|
|
|
|
try:
|
2020-05-03 11:15:52 +02:00
|
|
|
i3.Subscription(self._output_update, "output")
|
2020-07-25 19:52:10 +02:00
|
|
|
except NameError:
|
2020-03-11 21:35:25 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
def _output_update(self, event, data, _):
|
|
|
|
self._needs_update = True
|
|
|
|
|
2020-03-13 13:56:08 +01:00
|
|
|
def update(self):
|
2020-07-25 19:52:10 +02:00
|
|
|
if not self._autoupdate and not self._needs_update:
|
2020-03-11 21:35:25 +01:00
|
|
|
return
|
|
|
|
|
2020-07-25 19:52:10 +02:00
|
|
|
self.clear_widgets()
|
|
|
|
self._active_displays.clear()
|
|
|
|
|
2020-03-11 21:35:25 +01:00
|
|
|
self._needs_update = False
|
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
for line in util.cli.execute("xrandr -q").split("\n"):
|
2020-07-25 19:52:10 +02:00
|
|
|
if " connected" not in line:
|
2020-03-11 21:35:25 +01:00
|
|
|
continue
|
2020-07-25 17:47:31 +02:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
display = line.split(" ", 2)[0]
|
2020-07-25 19:52:10 +02:00
|
|
|
resolution = re.search(r"\d+x\d+\+(\d+)\+\d+", line)
|
|
|
|
|
|
|
|
if resolution:
|
|
|
|
self._active_displays.append(display)
|
|
|
|
|
2020-07-25 17:47:31 +02:00
|
|
|
if display.startswith(self._exclude):
|
|
|
|
continue
|
|
|
|
|
2020-03-11 21:35:25 +01:00
|
|
|
widget = self.widget(display)
|
|
|
|
if not widget:
|
2020-05-09 21:24:28 +02:00
|
|
|
widget = self.add_widget(full_text=display, name=display)
|
2020-03-13 13:56:08 +01:00
|
|
|
core.input.register(widget, button=1, cmd=self._toggle)
|
|
|
|
core.input.register(widget, button=3, cmd=self._toggle)
|
2020-07-25 17:47:31 +02:00
|
|
|
widget.set("state", "on" if resolution else "off")
|
|
|
|
widget.set("pos", int(resolution.group(1)) if resolution else sys.maxsize)
|
2020-03-11 21:35:25 +01:00
|
|
|
|
2020-07-25 19:52:10 +02:00
|
|
|
if not self._autoupdate:
|
2020-05-09 10:57:44 +02:00
|
|
|
widget = self.add_widget(full_text="")
|
2020-05-03 11:15:52 +02:00
|
|
|
widget.set("state", "refresh")
|
2020-03-13 13:56:08 +01:00
|
|
|
core.input.register(widget, button=1, cmd=self._refresh)
|
2020-03-11 21:35:25 +01:00
|
|
|
|
|
|
|
def state(self, widget):
|
2020-05-03 11:15:52 +02:00
|
|
|
return widget.get("state", "off")
|
2020-03-11 21:35:25 +01:00
|
|
|
|
|
|
|
def _refresh(self, event):
|
|
|
|
self._needs_update = True
|
|
|
|
|
|
|
|
def _toggle(self, event):
|
2020-07-25 19:52:10 +02:00
|
|
|
if util.format.asbool(self.parameter("overwrite_i3config", False)):
|
2020-05-10 12:52:20 +02:00
|
|
|
toggle_cmd = utility("toggle-display.sh")
|
2020-03-11 21:35:25 +01:00
|
|
|
else:
|
2020-05-03 11:15:52 +02:00
|
|
|
toggle_cmd = "xrandr"
|
2020-03-11 21:35:25 +01:00
|
|
|
|
2020-07-05 20:35:44 +02:00
|
|
|
widget = self.widget(widget_id=event["instance"])
|
2020-03-11 21:35:25 +01:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
if widget.get("state") == "on":
|
2020-07-25 19:52:57 +02:00
|
|
|
if len(self._active_displays) > 1:
|
|
|
|
util.cli.execute("{} --output {} --off".format(toggle_cmd, widget.name))
|
2020-07-25 19:52:10 +02:00
|
|
|
elif not self._active_displays:
|
|
|
|
util.cli.execute("{} --output {} --auto".format(toggle_cmd, widget.name))
|
2020-03-11 21:35:25 +01:00
|
|
|
else:
|
2020-07-25 19:52:10 +02:00
|
|
|
if event["button"] == core.input.LEFT_MOUSE:
|
|
|
|
side, neighbor = "left", self._active_displays[0]
|
2020-03-11 21:35:25 +01:00
|
|
|
else:
|
2020-07-25 19:52:10 +02:00
|
|
|
side, neighbor = "right", self._active_displays[-1]
|
|
|
|
|
|
|
|
util.cli.execute(
|
|
|
|
"{} --output {} --auto --{}-of {}".format(
|
|
|
|
toggle_cmd, widget.name, side, neighbor,
|
2020-05-03 11:15:52 +02:00
|
|
|
)
|
2020-07-25 19:52:10 +02:00
|
|
|
)
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-07-25 19:52:10 +02:00
|
|
|
self._refresh(event)
|
2020-03-11 21:35:25 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|