X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=autorandr.py;h=f14f5ab536152f60109e47524d092f673e0ba753;hb=6b27e2a62d07f864c722c6d19fe5a9ade9457077;hp=5a0a6860fea0c82bf72e1521781cbd06513f71a4;hpb=c060377e8e9fd0a13e159820f9a950597fa51482;p=deb_pkgs%2Fautorandr.git diff --git a/autorandr.py b/autorandr.py index 5a0a686..f14f5ab 100755 --- a/autorandr.py +++ b/autorandr.py @@ -68,7 +68,7 @@ help_text = """ Usage: autorandr [options] -h, --help get this small help --c, --change reload current setup +-c, --change automatically load the first detected profile -d, --default make profile the default profile -l, --load load profile -s, --save save your current setup to profile @@ -631,6 +631,35 @@ def call_and_retry(*args, **kwargs): return retval +def get_fb_dimensions(configuration): + width = 0 + height = 0 + for output in configuration.values(): + if "off" in output.options or not output.edid: + continue + # This won't work with all modes -- but it's a best effort. + o_width, o_height = map(int, output.options["mode"].split("x")) + if "transform" in output.options: + a, b, c, d, e, f, g, h, i = map(float, output.options["transform"].split(",")) + w = (g * o_width + h * o_height + i) + x = (a * o_width + b * o_height + c) / w + y = (d * o_width + e * o_height + f) / w + o_width, o_height = x, y + if "pos" in output.options: + o_left, o_top = map(int, output.options["pos"].split("x")) + o_width += o_left + o_height += o_top + if "panning" in output.options: + match = re.match("(?P[0-9]+)x(?P[0-9]+)(?:\+(?P[0-9]+))?(?:\+(?P[0-9]+))?.*", output.options["panning"]) + if match: + detail = match.groupdict() + o_width = int(detail.get("w")) + int(detail.get("x", "0")) + o_height = int(detail.get("h")) + int(detail.get("y", "0")) + width = max(width, o_width) + height = max(height, o_height) + return int(width), int(height) + + def apply_configuration(new_configuration, current_configuration, dry_run=False): "Apply a configuration" outputs = sorted(new_configuration.keys(), key=lambda x: new_configuration[x].sort_key) @@ -659,6 +688,13 @@ def apply_configuration(new_configuration, current_configuration, dry_run=False) # explicitly, so avoid it unless necessary. # (See https://github.com/phillipberndt/autorandr/issues/72) + fb_dimensions = get_fb_dimensions(new_configuration) + try: + base_argv += ["--fb", "%dx%d" % fb_dimensions] + except: + # Failed to obtain frame-buffer size. Doesn't matter, xrandr will choose for the user. + pass + auxiliary_changes_pre = [] disable_outputs = [] enable_outputs = [] @@ -1125,7 +1161,11 @@ def main(argv): try: profile_folder = os.path.join(profile_path, options["--save"]) save_configuration(profile_folder, config) - exec_scripts(profile_folder, "postsave", {"CURRENT_PROFILE": options["--save"], "PROFILE_FOLDER": profile_folder}) + exec_scripts(profile_folder, "postsave", { + "CURRENT_PROFILE": options["--save"], + "PROFILE_FOLDER": profile_folder, + "MONITORS": ":".join(config.keys()), + }) except Exception as e: raise AutorandrException("Failed to save current configuration as profile '%s'" % (options["--save"],), e) print("Saved current configuration as profile '%s'" % options["--save"]) @@ -1207,7 +1247,7 @@ def main(argv): if "-d" in options: options["--default"] = options["-d"] - if not load_profile and "--default" in options: + if not load_profile and "--default" in options and ("-c" in options or "--change" in options): load_profile = options["--default"] if load_profile: @@ -1245,6 +1285,7 @@ def main(argv): script_metadata = { "CURRENT_PROFILE": load_profile, "PROFILE_FOLDER": scripts_path, + "MONITORS": ":".join(load_config.keys()), } exec_scripts(scripts_path, "preswitch", script_metadata) if "--debug" in options: