diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-19 13:44:36 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-19 13:44:36 -0400 |
commit | 87d5d14310964021c1fb46054985bf2f2a75f946 (patch) | |
tree | 15734c40f52b533f04caeedc199373a27a46a83d /sway/config.c | |
parent | 8f529536e3183cb2ebecee71903edd135316b197 (diff) | |
parent | acbcf179051fb9f15b0ceb505089d31344cdb755 (diff) |
Merge pull request #88 from aouelete/master
Fixed config path
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index ce05bc68..94bc2abb 100644 --- a/sway/config.c +++ b/sway/config.c @@ -63,7 +63,7 @@ void free_config(struct sway_config *config) { static const char *search_paths[] = { "$home/.sway/config", - "$config/.sway/config", + "$config/sway/config", "/etc/sway/config", "$home/.i3/config", "$config/.i3/config", |