X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=autorandr.py;h=824a7dbae0e52fca4deb79349c034e70e8ba1da1;hb=c84bf4811f4d100509398002011b2733c06c3273;hp=fbc1445bf09e015e2214a7a4c4d53f438fa54a16;hpb=1094d7d95c58ca1cba64dc22286cf22bd7ba7be9;p=deb_pkgs%2Fautorandr.git diff --git a/autorandr.py b/autorandr.py index fbc1445..824a7db 100755 --- a/autorandr.py +++ b/autorandr.py @@ -36,12 +36,20 @@ import subprocess import sys import shutil import time +import glob from collections import OrderedDict from distutils.version import LooseVersion as Version from functools import reduce from itertools import chain +if sys.version_info.major == 2: + import ConfigParser as configparser +else: + import configparser + +__version__ = "1.10.1" + try: input = raw_input except NameError: @@ -49,6 +57,7 @@ except NameError: virtual_profiles = [ # (name, description, callback) + ("off", "Disable all outputs", None), ("common", "Clone all connected outputs at the largest common resolution", None), ("clone-largest", "Clone all connected outputs with the largest resolution (scaled down if necessary)", None), ("horizontal", "Stack all connected outputs horizontally at their largest resolution", None), @@ -59,38 +68,46 @@ 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 -r, --remove remove profile --l, --load load profile --d, --default make profile the default profile ---skip-options