awesome/config.c

577 lines
18 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* config.c - configuration management
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
2007-09-12 14:29:51 +02:00
*/
2008-03-21 16:50:17 +01:00
/* XStringToKeysym() */
#include <X11/Xlib.h>
#include <errno.h>
2007-09-05 20:15:00 +02:00
2008-01-29 11:27:14 +01:00
#include "config.h"
2007-11-15 14:41:03 +01:00
#include "statusbar.h"
2008-01-13 15:44:01 +01:00
#include "tag.h"
2007-11-15 14:41:03 +01:00
#include "rules.h"
#include "screen.h"
2007-12-15 18:21:02 +01:00
#include "widget.h"
#include "defconfig.h"
#include "layouts/tile.h"
#include "common/configopts.h"
2008-03-04 20:39:21 +01:00
#include "common/xutil.h"
2008-01-16 20:53:46 +01:00
/* Permit to use mouse with many more buttons */
2008-03-21 16:50:17 +01:00
#ifndef XCB_BUTTON_INDEX_6
#define XCB_BUTTON_INDEX_6 6
2008-01-16 20:53:46 +01:00
#endif
2008-03-21 16:50:17 +01:00
#ifndef XCB_BUTTON_INDEX_7
#define XCB_BUTTON_INDEX_7 7
2008-01-16 20:53:46 +01:00
#endif
extern AwesomeConf globalconf;
2008-01-31 16:34:00 +01:00
extern cfg_opt_t awesome_opts[];
2007-09-05 20:15:00 +02:00
/** Link a name to a key symbol */
typedef struct
{
const char *name;
2008-03-21 16:50:17 +01:00
xcb_keysym_t keysym;
2007-09-05 20:15:00 +02:00
} KeyMod;
/** Link a name to a mouse button symbol */
typedef struct
{
const char *name;
unsigned int button;
} MouseButton;
extern const name_func_link_t UicbList[];
extern const name_func_link_t WidgetList[];
2008-01-12 21:36:24 +01:00
extern const name_func_link_t LayoutList[];
extern const name_func_link_t FloatingPlacementList[];
2007-09-05 20:15:00 +02:00
/** Lookup for a key mask from its name
* \param keyname Key name
* \return Key mask or 0 if not found
*/
2008-03-21 16:50:17 +01:00
static xcb_keysym_t
2007-09-05 20:15:00 +02:00
key_mask_lookup(const char *keyname)
{
/** List of keyname and corresponding X11 mask codes */
static const KeyMod KeyModList[] =
{
2008-03-21 16:50:17 +01:00
{"Shift", XCB_MOD_MASK_SHIFT},
{"Lock", XCB_MOD_MASK_LOCK},
{"Control", XCB_MOD_MASK_CONTROL},
{"Mod1", XCB_MOD_MASK_1},
{"Mod2", XCB_MOD_MASK_2},
{"Mod3", XCB_MOD_MASK_3},
{"Mod4", XCB_MOD_MASK_4},
{"Mod5", XCB_MOD_MASK_5},
{NULL, XCB_NO_SYMBOL}
};
2007-09-05 20:15:00 +02:00
int i;
if(keyname)
for(i = 0; KeyModList[i].name; i++)
2007-09-21 17:32:00 +02:00
if(!a_strcmp(keyname, KeyModList[i].name))
return KeyModList[i].keysym;
2007-09-05 20:15:00 +02:00
2008-02-08 14:35:32 +01:00
return 0;
2007-09-06 23:29:50 +02:00
}
2007-09-05 20:15:00 +02:00
/** Lookup for a mouse button from its name
* \param button Mouse button name
* \return Mouse button or 0 if not found
*/
static unsigned int
mouse_button_lookup(const char *button)
{
/** List of button name and corresponding X11 mask codes */
static const MouseButton MouseButtonList[] =
{
2008-03-21 16:50:17 +01:00
{"1", XCB_BUTTON_INDEX_1},
{"2", XCB_BUTTON_INDEX_2},
{"3", XCB_BUTTON_INDEX_3},
{"4", XCB_BUTTON_INDEX_4},
{"5", XCB_BUTTON_INDEX_5},
{"6", XCB_BUTTON_INDEX_6},
{"7", XCB_BUTTON_INDEX_7},
{NULL, 0}
};
int i;
if(button)
for(i = 0; MouseButtonList[i].name; i++)
if(!a_strcmp(button, MouseButtonList[i].name))
return MouseButtonList[i].button;
return 0;
}
static Button *
2008-03-21 16:50:17 +01:00
parse_mouse_bindings(cfg_t * cfg, const char *secname, bool handle_arg)
2007-11-12 11:59:57 +01:00
{
2008-01-12 20:56:41 +01:00
int i, j;
2007-11-12 11:59:57 +01:00
cfg_t *cfgsectmp;
Button *b = NULL, *head = NULL;
2007-11-12 11:59:57 +01:00
/* Mouse: layout click bindings */
2008-01-12 20:56:41 +01:00
for(i = cfg_size(cfg, secname) - 1; i >= 0; i--)
2007-11-12 11:59:57 +01:00
{
2008-01-12 20:56:41 +01:00
b = p_new(Button, 1);
2007-11-12 11:59:57 +01:00
cfgsectmp = cfg_getnsec(cfg, secname, i);
2008-01-12 20:56:41 +01:00
for(j = cfg_size(cfgsectmp, "modkey") - 1; j >= 0; j--)
b->mod |= key_mask_lookup(cfg_getnstr(cfgsectmp, "modkey", j));
b->button = mouse_button_lookup(cfg_getstr(cfgsectmp, "button"));
b->func = name_func_lookup(cfg_getstr(cfgsectmp, "command"), UicbList);
if(!b->func)
2007-12-13 02:40:45 +01:00
warn("unknown command %s\n", cfg_getstr(cfgsectmp, "command"));
if(handle_arg)
b->arg = a_strdup(cfg_getstr(cfgsectmp, "arg"));
else
b->arg = NULL;
2008-01-12 20:56:41 +01:00
button_list_push(&head, b);
2007-11-12 11:59:57 +01:00
}
return head;
2007-11-12 11:59:57 +01:00
}
2008-01-03 17:09:27 +01:00
static void
set_key_info(Key *key, cfg_t *cfg)
{
unsigned int j;
for(j = 0; j < cfg_size(cfg, "modkey"); j++)
key->mod |= key_mask_lookup(cfg_getnstr(cfg, "modkey", j));
key->func = name_func_lookup(cfg_getstr(cfg, "command"), UicbList);
if(!key->func)
2007-12-13 14:03:55 +01:00
warn("unknown command %s\n", cfg_getstr(cfg, "command"));
}
static void
config_key_store(Key *key, char *str)
{
2008-03-21 16:50:17 +01:00
xcb_keycode_t kc;
xcb_keysym_t ks;
int ikc;
if(!a_strlen(str))
return;
else if(a_strncmp(str, "#", 1))
key->keysym = XStringToKeysym(str);
else
{
ikc = atoi(str + 1);
memcpy(&kc, &ikc, sizeof(KeyCode));
key->keycode = kc;
}
}
2008-01-03 17:09:27 +01:00
static Key *
section_keys(cfg_t *cfg_keys)
{
2008-01-12 20:53:19 +01:00
Key *key = NULL, *head = NULL;
int i, j, numkeys;
cfg_t *cfgkeytmp;
2008-01-12 20:53:19 +01:00
for(i = cfg_size(cfg_keys, "key") - 1; i >= 0; i--)
{
2008-01-12 20:53:19 +01:00
key = p_new(Key, 1);
cfgkeytmp = cfg_getnsec(cfg_keys, "key", i);
set_key_info(key, cfgkeytmp);
config_key_store(key, cfg_getstr(cfgkeytmp, "key"));
key->arg = a_strdup(cfg_getstr(cfgkeytmp, "arg"));
2008-01-12 20:53:19 +01:00
key_list_push(&head, key);
}
2008-01-12 20:53:19 +01:00
for(i = cfg_size(cfg_keys, "keylist") - 1; i >= 0; i--)
{
cfgkeytmp = cfg_getnsec(cfg_keys, "keylist", i);
numkeys = cfg_size(cfgkeytmp, "keylist");
2008-01-12 20:53:19 +01:00
if(numkeys != (int) cfg_size(cfgkeytmp, "arglist"))
{
2007-12-13 14:03:55 +01:00
warn("number of keys != number of args in keylist");
continue;
}
2008-01-12 20:53:19 +01:00
for(j = 0; j < numkeys; j++)
{
2008-01-12 20:53:19 +01:00
key = p_new(Key, 1);
set_key_info(key, cfgkeytmp);
config_key_store(key, cfg_getnstr(cfgkeytmp, "keylist", j));
key->arg = a_strdup(cfg_getnstr(cfgkeytmp, "arglist", j));
2008-01-12 20:53:19 +01:00
key_list_push(&head, key);
}
}
2008-01-12 20:53:19 +01:00
return head;
}
static int
cmp_widget_cfg(const void *a, const void *b)
{
if (((cfg_t*)a)->line < ((cfg_t*)b)->line)
return -1;
if (((cfg_t*)a)->line > ((cfg_t*)b)->line)
return 1;
return 0;
}
static void
statusbar_widgets_create(cfg_t *cfg_statusbar, Statusbar *statusbar)
{
cfg_t* widgets, *wptr;
Widget *widget = NULL;
unsigned int i, j, numwidgets = 0;
WidgetConstructor *widget_new;
for(i = 0; WidgetList[i].name; i++)
numwidgets += cfg_size(cfg_statusbar, WidgetList[i].name);
wptr = widgets = p_new(cfg_t, numwidgets);
for(i = 0; WidgetList[i].name; i++)
for (j = 0; j < cfg_size(cfg_statusbar, WidgetList[i].name); j++)
{
memcpy(wptr,
cfg_getnsec(cfg_statusbar, WidgetList[i].name, j),
sizeof(cfg_t));
wptr++;
}
qsort(widgets, numwidgets, sizeof(cfg_t), cmp_widget_cfg);
2008-01-12 21:35:44 +01:00
for(i = 0; i < numwidgets; i++)
2007-12-22 16:25:22 +01:00
{
wptr = &widgets[i];
widget_new = name_func_lookup(cfg_name(wptr), WidgetList);
2007-12-27 15:49:00 +01:00
if(widget_new)
{
2008-01-12 21:35:44 +01:00
widget = widget_new(statusbar, wptr);
widget_list_append(&statusbar->widgets, widget);
widget->buttons = parse_mouse_bindings(wptr, "mouse",
2008-03-21 16:50:17 +01:00
a_strcmp(cfg_name(wptr), "taglist") ? true : false);
2007-12-27 15:49:00 +01:00
}
else
2008-03-19 09:55:15 +01:00
warn("ignoring unknown widget: %s.\n", cfg_name(widgets + i));
}
p_delete(&widgets);
}
2008-03-14 20:35:24 +01:00
static void
config_section_titlebar_init(cfg_t *cfg_titlebar, Titlebar *tb, int screen)
2008-03-14 20:35:24 +01:00
{
int phys_screen = screen_virttophys(screen);
cfg_t *cfg_styles = cfg_getsec(cfg_titlebar, "styles");
tb->position = tb->dposition = cfg_getposition(cfg_titlebar, "position");
tb->align = cfg_getalignment(cfg_titlebar, "align");
tb->text_align = cfg_getalignment(cfg_titlebar, "text_align");
tb->width = cfg_getint(cfg_titlebar, "width");
tb->height = cfg_getint(cfg_titlebar, "height");
2008-03-21 16:50:17 +01:00
draw_style_init(globalconf.connection, phys_screen,
cfg_getsec(cfg_styles, "normal"),
&tb->styles.normal,
&globalconf.screens[screen].styles.normal);
2008-03-21 16:50:17 +01:00
draw_style_init(globalconf.connection, phys_screen,
cfg_getsec(cfg_styles, "focus"),
&tb->styles.focus,
&globalconf.screens[screen].styles.focus);
2008-03-21 16:50:17 +01:00
draw_style_init(globalconf.connection, phys_screen,
cfg_getsec(cfg_styles, "urgent"),
&tb->styles.urgent,
&globalconf.screens[screen].styles.urgent);
2008-03-14 20:35:24 +01:00
}
static void
config_parse_screen(cfg_t *cfg, int screen)
{
char buf[2];
const char *tmp;
FloatingPlacement flpl;
Layout *layout = NULL;
Tag *tag = NULL;
2007-12-30 21:00:34 +01:00
Statusbar *statusbar = NULL;
cfg_t *cfg_general, *cfg_styles, *cfg_screen, *cfg_tags,
2008-03-14 20:35:24 +01:00
*cfg_layouts, *cfg_padding, *cfgsectmp, *cfg_titlebar,
*cfg_styles_normal, *cfg_styles_focus, *cfg_styles_urgent;
VirtScreen *virtscreen = &globalconf.screens[screen];
int i, phys_screen = screen_virttophys(screen);
snprintf(buf, sizeof(buf), "%d", screen);
cfg_screen = cfg_gettsec(cfg, "screen", buf);
if(!cfg_screen)
cfg_screen = cfg_getsec(cfg, "screen");
if(!cfg_screen)
{
warn("parsing configuration file failed, no screen section found\n");
cfg_parse_buf(cfg, AWESOME_DEFAULT_CONFIG);
cfg_screen = cfg_getsec(cfg, "screen");
}
/* get screen specific sections */
cfg_tags = cfg_getsec(cfg_screen, "tags");
cfg_styles = cfg_getsec(cfg_screen, "styles");
cfg_general = cfg_getsec(cfg_screen, "general");
2008-03-14 20:35:24 +01:00
cfg_titlebar = cfg_getsec(cfg_screen, "titlebar");
cfg_layouts = cfg_getsec(cfg_screen, "layouts");
cfg_padding = cfg_getsec(cfg_screen, "padding");
/* General section */
virtscreen->borderpx = cfg_getint(cfg_general, "border");
virtscreen->snap = cfg_getint(cfg_general, "snap");
virtscreen->resize_hints = cfg_getbool(cfg_general, "resize_hints");
virtscreen->sloppy_focus = cfg_getbool(cfg_general, "sloppy_focus");
2008-01-25 23:27:32 +01:00
virtscreen->sloppy_focus_raise = cfg_getbool(cfg_general, "sloppy_focus_raise");
virtscreen->new_become_master = cfg_getbool(cfg_general, "new_become_master");
2008-01-07 18:54:45 +01:00
virtscreen->new_get_focus = cfg_getbool(cfg_general, "new_get_focus");
virtscreen->opacity_unfocused = cfg_getfloat(cfg_general, "opacity_unfocused");
virtscreen->opacity_focused = cfg_getfloat(cfg_general, "opacity_focused");
virtscreen->floating_placement =
name_func_lookup(cfg_getstr(cfg_general, "floating_placement"),
FloatingPlacementList);
virtscreen->mwfact_lower_limit = cfg_getfloat(cfg_general, "mwfact_lower_limit");
virtscreen->mwfact_upper_limit = cfg_getfloat(cfg_general, "mwfact_upper_limit");
if(virtscreen->mwfact_upper_limit < virtscreen->mwfact_lower_limit)
{
warn("mwfact_upper_limit must be greater than mwfact_lower_limit\n");
virtscreen->mwfact_upper_limit = 0.9;
virtscreen->mwfact_lower_limit = 0.1;
}
if(!virtscreen->floating_placement)
{
warn("unknown floating placement: %s\n", cfg_getstr(cfg_general, "floating_placement"));
virtscreen->floating_placement = FloatingPlacementList[0].func;
}
/* Colors */
if(!cfg_styles)
2008-03-13 18:53:11 +01:00
eprint("no colors section found");
if(!(cfg_styles_normal = cfg_getsec(cfg_styles, "normal")))
eprint("no normal colors section found\n");
if(!(cfg_styles_focus = cfg_getsec(cfg_styles, "focus")))
eprint("no focus colors section found\n");
if(!(cfg_styles_urgent = cfg_getsec(cfg_styles, "urgent")))
eprint("no urgent colors section found\n");
2008-03-13 17:57:38 +01:00
2008-03-21 16:50:17 +01:00
draw_style_init(globalconf.connection, phys_screen,
cfg_styles_normal, &virtscreen->styles.normal, NULL);
2008-03-21 16:50:17 +01:00
draw_style_init(globalconf.connection, phys_screen,
cfg_styles_focus, &virtscreen->styles.focus, &virtscreen->styles.normal);
2008-03-21 16:50:17 +01:00
draw_style_init(globalconf.connection, phys_screen,
cfg_styles_urgent, &virtscreen->styles.urgent, &virtscreen->styles.normal);
if(!virtscreen->styles.normal.font)
eprint("no font available\n");
/* Titlebar */
config_section_titlebar_init(cfg_titlebar, &virtscreen->titlebar_default, screen);
/* Statusbar */
2008-01-12 21:39:41 +01:00
statusbar_list_init(&virtscreen->statusbar);
2008-01-12 22:15:06 +01:00
for(i = cfg_size(cfg_screen, "statusbar") - 1; i >= 0; i--)
2007-12-30 21:00:34 +01:00
{
2008-01-12 21:39:41 +01:00
statusbar = p_new(Statusbar, 1);
2008-01-12 22:15:06 +01:00
cfgsectmp = cfg_getnsec(cfg_screen, "statusbar", i);
2008-01-12 21:39:41 +01:00
statusbar->position = statusbar->dposition =
cfg_getposition(cfgsectmp, "position");
2008-01-12 21:39:41 +01:00
statusbar->height = cfg_getint(cfgsectmp, "height");
statusbar->width = cfg_getint(cfgsectmp, "width");
statusbar->name = a_strdup(cfg_title(cfgsectmp));
2008-01-16 17:50:37 +01:00
statusbar->screen = screen;
statusbar_preinit(statusbar);
statusbar_widgets_create(cfgsectmp, statusbar);
2008-01-16 16:43:23 +01:00
statusbar_list_push(&virtscreen->statusbar, statusbar);
2007-12-30 21:00:34 +01:00
}
/* Layouts */
2008-01-12 22:15:06 +01:00
layout_list_init(&virtscreen->layouts);
if((i = cfg_size(cfg_layouts, "layout")))
for(--i; i >= 0; i--)
{
2008-01-12 22:15:06 +01:00
layout = p_new(Layout, 1);
cfgsectmp = cfg_getnsec(cfg_layouts, "layout", i);
2008-01-12 21:36:24 +01:00
layout->arrange = name_func_lookup(cfg_title(cfgsectmp), LayoutList);
if(!layout->arrange)
{
warn("unknown layout %s in configuration file\n", cfg_title(cfgsectmp));
layout->image = NULL;
continue;
}
layout->image = a_strdup(cfg_getstr(cfgsectmp, "image"));
2008-01-12 22:15:06 +01:00
layout_list_push(&virtscreen->layouts, layout);
}
else
{
2007-12-30 21:00:34 +01:00
warn("no default layout available\n");
layout = p_new(Layout, 1);
layout->arrange = layout_tile;
layout_list_push(&virtscreen->layouts, layout);
}
/* Tags */
2008-01-12 21:53:58 +01:00
tag_list_init(&virtscreen->tags);
2008-01-12 22:15:06 +01:00
if((i = cfg_size(cfg_tags, "tag")))
for(--i; i >= 0; i--)
{
2008-01-12 22:15:06 +01:00
cfgsectmp = cfg_getnsec(cfg_tags, "tag", i);
2008-01-17 18:27:55 +01:00
tmp = cfg_getstr(cfgsectmp, "layout");
for(layout = virtscreen->layouts;
2008-01-17 18:27:55 +01:00
layout && layout->arrange != name_func_lookup(tmp, LayoutList);
layout = layout->next);
if(!layout)
2008-01-17 18:27:55 +01:00
layout = virtscreen->layouts;
tag = tag_new(cfg_title(cfgsectmp),
layout,
cfg_getfloat(cfgsectmp, "mwfact"),
cfg_getint(cfgsectmp, "nmaster"),
cfg_getint(cfgsectmp, "ncol"));
tag_push_to_screen(tag, screen);
}
else
{
warn("fatal: no tags found in configuration file\n");
tag = tag_new("default", virtscreen->layouts, 0.5, 1, 1);
tag_push_to_screen(tag, screen);
}
/* select first tag by default */
2008-03-21 16:50:17 +01:00
virtscreen->tags[0].selected = true;
virtscreen->tags[0].was_selected = true;
/* padding */
virtscreen->padding.top = cfg_getint(cfg_padding, "top");
virtscreen->padding.bottom = cfg_getint(cfg_padding, "bottom");
virtscreen->padding.left = cfg_getint(cfg_padding, "left");
virtscreen->padding.right = cfg_getint(cfg_padding, "right");
}
2007-09-05 20:15:00 +02:00
/** Parse configuration file and initialize some stuff
* \param confpatharg Path to configuration file
2007-09-05 20:15:00 +02:00
*/
void
config_parse(const char *confpatharg)
2007-09-05 20:15:00 +02:00
{
cfg_t *cfg, *cfg_rules, *cfg_keys, *cfg_mouse, *cfgsectmp;
2008-01-12 20:45:12 +01:00
int ret, screen, i;
char *confpath;
2007-11-12 19:25:10 +01:00
Rule *rule = NULL;
FILE *defconfig = NULL;
2007-09-05 20:15:00 +02:00
if(confpatharg)
confpath = a_strdup(confpatharg);
else
confpath = config_file();
2007-09-05 20:15:00 +02:00
globalconf.configpath = a_strdup(confpath);
2007-11-08 11:22:25 +01:00
cfg = cfg_new();
ret = cfg_parse(cfg, confpath);
switch(ret)
{
case CFG_FILE_ERROR:
warn("parsing configuration file failed: %s\n", strerror(errno));
if(!(defconfig = fopen(confpath, "w")))
warn("unable to create default configuration file: %s\n", strerror(errno));
break;
case CFG_PARSE_ERROR:
cfg_error(cfg, "W: awesome: parsing configuration file %s failed.\n", confpath);
break;
}
if(ret != CFG_SUCCESS)
{
warn("using default compile-time configuration\n");
cfg_free(cfg);
2008-01-31 11:45:10 +01:00
cfg = cfg_init(awesome_opts, CFGF_NONE);
cfg_parse_buf(cfg, AWESOME_DEFAULT_CONFIG);
}
/* get the right screen section */
for(screen = 0; screen < globalconf.screens_info->nscreen; screen++)
config_parse_screen(cfg, screen);
/* get general sections */
cfg_rules = cfg_getsec(cfg, "rules");
cfg_keys = cfg_getsec(cfg, "keys");
cfg_mouse = cfg_getsec(cfg, "mouse");
/* Rules */
2008-01-12 20:45:12 +01:00
rule_list_init(&globalconf.rules);
for(i = cfg_size(cfg_rules, "rule") - 1; i >= 0; i--)
{
rule = p_new(Rule, 1);
cfgsectmp = cfg_getnsec(cfg_rules, "rule", i);
rule->prop_r = rules_compile_regex(cfg_getstr(cfgsectmp, "name"));
rule->tags_r = rules_compile_regex(cfg_getstr(cfgsectmp, "tags"));
rule->xprop = a_strdup(cfg_getstr(cfgsectmp, "xproperty_name"));
rule->xpropval_r = rules_compile_regex(cfg_getstr(cfgsectmp, "xproperty_value"));
rule->icon = a_strdup(cfg_getstr(cfgsectmp, "icon"));
rule->isfloating = rules_get_fuzzy_from_str(cfg_getstr(cfgsectmp, "float"));
2008-01-12 20:45:12 +01:00
rule->screen = cfg_getint(cfgsectmp, "screen");
rule->ismaster = rules_get_fuzzy_from_str(cfg_getstr(cfgsectmp, "master"));
rule->opacity = cfg_getfloat(cfgsectmp, "opacity");
config_section_titlebar_init(cfg_getsec(cfgsectmp, "titlebar"), &rule->titlebar, 0);
if(rule->screen >= globalconf.screens_info->nscreen)
2008-01-12 20:45:12 +01:00
rule->screen = 0;
rule_list_push(&globalconf.rules, rule);
}
/* Mouse: root window click bindings */
2008-03-21 16:50:17 +01:00
globalconf.buttons.root = parse_mouse_bindings(cfg_mouse, "root", true);
/* Mouse: client windows click bindings */
2008-03-21 16:50:17 +01:00
globalconf.buttons.client = parse_mouse_bindings(cfg_mouse, "client", true);
/* Mouse: titlebar windows click bindings */
2008-03-21 16:50:17 +01:00
globalconf.buttons.titlebar = parse_mouse_bindings(cfg_mouse, "titlebar", true);
globalconf.keys = section_keys(cfg_keys);
2007-09-05 20:15:00 +02:00
if(defconfig)
{
fwrite(AWESOME_DEFAULT_CONFIG, a_strlen(AWESOME_DEFAULT_CONFIG), 1, defconfig);
fclose(defconfig);
}
/* Free! Like a river! */
cfg_free(cfg);
2007-09-05 20:15:00 +02:00
p_delete(&confpath);
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80