diff --git a/sway/config.c b/sway/config.c index c30c17671..a877261cb 100644 --- a/sway/config.c +++ b/sway/config.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -245,6 +246,11 @@ static char *get_config_path(void) { static bool load_config(const char *path, struct sway_config *config) { sway_log(L_INFO, "Loading config from %s", path); + struct stat sb; + if (stat(path, &sb) == 0 && S_ISDIR(sb.st_mode)) { + return false; + } + if (path == NULL) { sway_log(L_ERROR, "Unable to find a config file!"); return false;