config: Remove tile_symbol

This commit is contained in:
Martin Duquesnoy 2008-11-13 08:33:44 +01:00
parent 0d8a10f0b9
commit 826a74640f
3 changed files with 0 additions and 4 deletions

View File

@ -237,7 +237,6 @@ init_conf(void)
{
CFG_STR("fg", "#FFFFFF", CFGF_NONE),
CFG_STR("bg", "#292929", CFGF_NONE),
CFG_STR("tile_symbol", "TILE", CFGF_NONE),
CFG_SEC("layout", layout_opts, CFGF_MULTI),
CFG_END()
};
@ -414,7 +413,6 @@ init_conf(void)
/* layout */
conf.colors.layout_fg = strdup(var_to_str(cfg_getstr(cfg_layouts, "fg")));
conf.colors.layout_bg = getcolor(var_to_str(cfg_getstr(cfg_layouts, "bg")));
conf.tile_symbol = var_to_str(cfg_getstr(cfg_layouts, "tile_symbol"));
if((conf.nlayout = cfg_size(cfg_layouts, "layout")) > NUM_OF_LAYOUT
|| !(conf.nlayout = cfg_size(cfg_layouts, "layout")))

View File

@ -202,7 +202,6 @@ typedef struct
} titlebar;
Tag tag[MAXTAG];
Layout layout[NUM_OF_LAYOUT];
char *tile_symbol;
int ntag;
int nkeybind;
int nbutton;

1
wmfsrc
View File

@ -25,7 +25,6 @@ layouts
bg = "#7E89A2"
# Tiling layouts
tile_symbol = "TILE"
layout { type = "tile_right" symbol = "RIGHT" }
layout { type = "tile_left" symbol = "LEFT" }
layout { type = "tile_top" symbol = "TOP" }