Completely change the default mwfact to .618
The original changes to tag.c missed quite a bunch. Signed-off-by: Gregor Best <gbe@ring0.de> Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
95216be66b
commit
5ee4b0d97d
|
@ -482,7 +482,7 @@ cfg_opt_t tag_opts[] =
|
|||
/** Default layout for this tag. */
|
||||
CFG_STR((char *) "layout", (char *) "tile", CFGF_NONE),
|
||||
/** Default master width factor for this tag. */
|
||||
CFG_FLOAT((char *) "mwfact", 0.5, CFGF_NONE),
|
||||
CFG_FLOAT((char *) "mwfact", 0.618, CFGF_NONE),
|
||||
/** Default number of master windows for this tag. */
|
||||
CFG_INT((char *) "nmaster", 1, CFGF_NONE),
|
||||
/** Default number of window columns for this tag. */
|
||||
|
|
2
config.c
2
config.c
|
@ -467,7 +467,7 @@ config_parse_screen(cfg_t *cfg, int screen)
|
|||
else
|
||||
{
|
||||
warn("fatal: no tags found in configuration file\n");
|
||||
tag = tag_new("default", virtscreen->layouts, 0.5, 1, 1);
|
||||
tag = tag_new("default", virtscreen->layouts, 0.618, 1, 1);
|
||||
tag_push_to_screen(tag, screen);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue