]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/commitdiff
Set default value of $XDG_CONFIG_DIRS to be standard compliant
authorJerzy Drozdz <jerzy.drozdz@jdsieci.pl>
Tue, 5 Jul 2016 05:34:29 +0000 (07:34 +0200)
committerJerzy Drozdz <jerzy.drozdz@jdsieci.pl>
Tue, 5 Jul 2016 05:34:29 +0000 (07:34 +0200)
autorandr.py

index c8b8f8fcebbd15f2de349876c82bf605cf98181a..41e27b6962ae7dc2a86bf9cd6869e822923aa5dd 100755 (executable)
@@ -736,7 +736,7 @@ def exec_scripts(profile_path, script_name, meta_information=None):
         user_profile_path = os.path.join(os.environ.get("XDG_CONFIG_HOME", os.path.expanduser("~/.config")), "autorandr")
 
     for folder in chain((profile_path, os.path.dirname(profile_path), user_profile_path),
-                        (os.path.join(x, "autorandr") for x in os.environ.get("XDG_CONFIG_DIRS", "").split(":"))):
+                        (os.path.join(x, "autorandr") for x in os.environ.get("XDG_CONFIG_DIRS", "/etc/xdg").split(":"))):
 
         if script_name not in ran_scripts:
             script = os.path.join(folder, script_name)
@@ -769,7 +769,7 @@ def main(argv):
     try:
         # Load profiles from each XDG config directory
         # The XDG spec says that earlier entries should take precedence, so reverse the order
-        for directory in reversed(os.environ.get("XDG_CONFIG_DIRS", "").split(":")):
+        for directory in reversed(os.environ.get("XDG_CONFIG_DIRS", "/etc/xdg").split(":")):
             system_profile_path = os.path.join(directory, "autorandr")
             if os.path.isdir(system_profile_path):
                 profiles.update(load_profiles(system_profile_path))