add default comp match for geany autocompete window

given that we're compositing-only now, we should be adding more of these for common apps to improve the user experience on a base configuration
This commit is contained in:
Mike Blumenkrantz 2014-01-30 10:45:46 -05:00
parent d1fb844db0
commit 5c5a89bfec
1 changed files with 7 additions and 0 deletions

View File

@ -168,6 +168,13 @@ e_comp_cfdata_config_new(void)
mat->primary_type = E_WINDOW_TYPE_TOOLTIP;
mat->shadow_style = eina_stringshare_add("menu");
mat = E_NEW(E_Comp_Match, 1);
cfg->match.overrides = eina_list_append(cfg->match.overrides, mat);
mat->name = eina_stringshare_add("geany");
mat->clas = eina_stringshare_add("Geany");
mat->primary_type = E_WINDOW_TYPE_NORMAL;
mat->shadow_style = eina_stringshare_add("still");
mat = E_NEW(E_Comp_Match, 1);
cfg->match.overrides = eina_list_append(cfg->match.overrides, mat);
mat->shadow_style = eina_stringshare_add("popup");