mirror of
https://github.com/swaywm/sway.git
synced 2025-11-11 13:29:51 -05:00
Abstracted load_config
This commit is contained in:
parent
7c02a1967b
commit
508980e3ab
4 changed files with 26 additions and 19 deletions
|
|
@ -8,6 +8,25 @@
|
|||
#include "commands.h"
|
||||
#include "config.h"
|
||||
|
||||
bool load_config() {
|
||||
// TODO: Allow use of more config file locations
|
||||
const char *name = "/.sway/config";
|
||||
const char *home = getenv("HOME");
|
||||
char *temp = malloc(strlen(home) + strlen(name) + 1);
|
||||
strcpy(temp, home);
|
||||
strcat(temp, name);
|
||||
FILE *f = fopen(temp, "r");
|
||||
if (!f) {
|
||||
fprintf(stderr, "Unable to open %s for reading", temp);
|
||||
free(temp);
|
||||
return false;
|
||||
}
|
||||
free(temp);
|
||||
config = read_config(f, false);
|
||||
fclose(f);
|
||||
return true;
|
||||
}
|
||||
|
||||
void config_defaults(struct sway_config *config) {
|
||||
config->symbols = create_list();
|
||||
config->modes = create_list();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue