X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=autorandr.py;h=d80b7d96b8bb5f79798958e0d90f3b23d5042001;hb=4af13f0a62d6a937d487bc3eb0d66522cdbb61b7;hp=c108c2615e369ac27b751a3e15e5224a8deaf382;hpb=b484c0ea9c9a4838278bbd661a7cc384333c1df8;p=deb_pkgs%2Fautorandr.git diff --git a/autorandr.py b/autorandr.py index c108c26..d80b7d9 100755 --- a/autorandr.py +++ b/autorandr.py @@ -48,7 +48,7 @@ if sys.version_info.major == 2: else: import configparser -__version__ = "1.7" +__version__ = "1.8.1" try: input = raw_input @@ -317,7 +317,13 @@ class XrandrOutput(object): else: edid = "%s-%s" % (XrandrOutput.EDID_UNAVAILABLE, match["output"]) - if not match["connected"] or not match["width"]: + # An output can be disconnected but still have a mode configured. This can only happen + # as a residual situation after a disconnect, you cannot associate a mode with an disconnected + # output. + # + # This code needs to be careful not to mix the two. An output should only be configured to + # "off" if it doesn't have a mode associated with it, which is modelled as "not a width" here. + if not match["width"]: options["off"] = None else: if match["mode_name"]: @@ -708,6 +714,9 @@ def apply_configuration(new_configuration, current_configuration, dry_run=False) if not new_configuration[output].edid or "off" in new_configuration[output].options: disable_outputs.append(new_configuration[output].option_vector) else: + if output not in current_configuration: + raise AutorandrException("New profile configures output %s which does not exist in current xrandr --verbose output. " + "Don't know how to proceed." % output) if "off" not in current_configuration[output].options: remain_active_count += 1