mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
Make main.c less stupid
This commit is contained in:
parent
a74268dfab
commit
e7a8868514
@ -6,7 +6,7 @@
|
||||
|
||||
struct sway_config *config;
|
||||
|
||||
bool load_config() {
|
||||
void load_config() {
|
||||
// TODO: Allow use of more config file locations
|
||||
const char *name = "/.i3/config";
|
||||
const char *home = getenv("HOME");
|
||||
@ -22,13 +22,10 @@ bool load_config() {
|
||||
free(temp);
|
||||
config = read_config(f);
|
||||
fclose(f);
|
||||
return true;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
if (!load_config()) {
|
||||
return 0;
|
||||
}
|
||||
load_config();
|
||||
return 0;
|
||||
|
||||
static struct wlc_interface interface = { };
|
||||
|
Loading…
Reference in New Issue
Block a user