X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=autorandr.py;h=e79aefbc72470cf130f8aa74ce9f7e7883162574;hb=0c01c37e5db07e2a81ff248b23f473eb84119d87;hp=72f48b89059721689e2cf37349176764c5dc17bf;hpb=ccfb4f9bafc9685c4c755b744a277107ea814972;p=deb_pkgs%2Fautorandr.git diff --git a/autorandr.py b/autorandr.py index 72f48b8..e79aefb 100755 --- a/autorandr.py +++ b/autorandr.py @@ -67,7 +67,7 @@ Usage: autorandr [options] --default . Another script called "postswitch "can be placed in the directory - ~/.autorandr as well as in any profile directories: The scripts are executed + ~/.config/autorandr as well as in any profile directories: The scripts are executed after a mode switch has taken place and can notify window managers. The following virtual configurations are available: @@ -496,7 +496,11 @@ def main(argv): print(str(e)) options = { "--help": True } - profile_path = os.path.expanduser("~/.autorandr") + profile_dir = os.path.expanduser("~/.autorandr") + if not os.path.isdir(profile_dir): + profile_dir = os.path.join(os.environ.get("XDG_CONFIG_HOME", os.path.expanduser("~/.config")), "autorandr") + + profile_path = os.path.join(profile_dir, "profiles") try: profiles = load_profiles(profile_path)