diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-26 20:55:17 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-26 20:55:17 +0200 |
commit | 7b08e4c3e63193f0f82577679e72affd067743a7 (patch) | |
tree | b2e9a2564fab52db408227ffdc50faee8e5376af | |
parent | update dist (diff) | |
download | nightshift-7b08e4c3e63193f0f82577679e72affd067743a7.tar.gz nightshift-7b08e4c3e63193f0f82577679e72affd067743a7.tar.bz2 nightshift-7b08e4c3e63193f0f82577679e72affd067743a7.tar.xz |
add missing path for nightshiftrc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-x | src/__main__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/__main__.py b/src/__main__.py index ee55217..5e452df 100755 --- a/src/__main__.py +++ b/src/__main__.py @@ -757,8 +757,8 @@ if config_file is None: for v in paths: files.append(v + p) add_files('XDG_CONFIG_HOME', '/%/%rc', '/%rc') - add_files('HOME', '/.config/%/%rc', '/.%rc') - add_files('~', '/.config/%/%rc', '/.%rc') + add_files('HOME', '/.config/%/%rc', '/.config/%rc', '/.%rc') + add_files('~', '/.config/%/%rc', '/.config/%rc', '/.%rc') add_files('XDG_CONFIG_DIRS', '/%rc', multi = True) add_files(None, '/etc/%rc') for file in files: |