File euclid-wm.c changed (mode: 100644) (index 0027a75..0c756ed) |
... |
... |
void load_conf( bool first_call) { |
463 |
463 |
} else { |
} else { |
464 |
464 |
autobalance = false; |
autobalance = false; |
465 |
465 |
}; |
}; |
|
466 |
|
} else if (strcmp(key,"sloppy_focus") == 0) { |
|
467 |
|
sloppy_focus = (strcmp(v,"true") == 0); |
466 |
468 |
} else if (strcmp(key,"resize_increment") == 0) { |
} else if (strcmp(key,"resize_increment") == 0) { |
467 |
469 |
resize_inc = atoi(v); |
resize_inc = atoi(v); |
468 |
470 |
} else if (strcmp(key,"empty_stack_height") == 0) { |
} else if (strcmp(key,"empty_stack_height") == 0) { |
File euclid-wm.conf.sample changed (mode: 100644) (index 9b0f1fd..be766dd) |
... |
... |
reserved_right = 0 |
38 |
38 |
#If not true, euclid places new windows below the currently focused window |
#If not true, euclid places new windows below the currently focused window |
39 |
39 |
autobalance = true |
autobalance = true |
40 |
40 |
|
|
|
41 |
|
#SLOPPY FOCUS |
|
42 |
|
#if set to true, euclid will automatically make window under mouse cursor focused |
|
43 |
|
#If not true, focus should be changed via keyboard |
|
44 |
|
#Note that new value of this option is applied to new windows |
|
45 |
|
sloppy_focus = true |
|
46 |
|
|
41 |
47 |
#RESIZE INCREMENT |
#RESIZE INCREMENT |
42 |
48 |
#the incremental change for each resize keypress (kinda) |
#the incremental change for each resize keypress (kinda) |
43 |
49 |
resize_increment = 30 |
resize_increment = 30 |