add various autostuff to ignore
[awesome.git] / config.c
blob92106e414a289b933897debbdb488b7eb6450ba0
1 /*
2 * config.c - configuration management
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 /**
23 * @defgroup ui_callback User Interface Callbacks
26 #include <X11/keysym.h>
28 #include "statusbar.h"
29 #include "util.h"
30 #include "rules.h"
31 #include "screen.h"
32 #include "widget.h"
33 #include "xutil.h"
34 #include "ewmh.h"
35 #include "defconfig.h"
36 #include "layouts/tile.h"
38 #define AWESOME_CONFIG_FILE ".awesomerc"
40 extern AwesomeConf globalconf;
42 /** Link a name to a key symbol */
43 typedef struct
45 const char *name;
46 KeySym keysym;
47 } KeyMod;
49 /** Link a name to a mouse button symbol */
50 typedef struct
52 const char *name;
53 unsigned int button;
54 } MouseButton;
56 extern const NameFuncLink UicbList[];
57 extern const NameFuncLink WidgetList[];
58 extern const NameFuncLink LayoutsList[];
61 static unsigned int
62 get_numlockmask(Display *disp)
64 XModifierKeymap *modmap;
65 unsigned int mask = 0;
66 int i, j;
68 modmap = XGetModifierMapping(disp);
69 for(i = 0; i < 8; i++)
70 for(j = 0; j < modmap->max_keypermod; j++)
71 if(modmap->modifiermap[i * modmap->max_keypermod + j]
72 == XKeysymToKeycode(disp, XK_Num_Lock))
73 mask = (1 << i);
75 XFreeModifiermap(modmap);
77 return mask;
80 /** Lookup for a key mask from its name
81 * \param keyname Key name
82 * \return Key mask or 0 if not found
84 static KeySym
85 key_mask_lookup(const char *keyname)
87 /** List of keyname and corresponding X11 mask codes */
88 static const KeyMod KeyModList[] =
90 {"Shift", ShiftMask},
91 {"Lock", LockMask},
92 {"Control", ControlMask},
93 {"Mod1", Mod1Mask},
94 {"Mod2", Mod2Mask},
95 {"Mod3", Mod3Mask},
96 {"Mod4", Mod4Mask},
97 {"Mod5", Mod5Mask},
98 {NULL, NoSymbol}
100 int i;
102 if(keyname)
103 for(i = 0; KeyModList[i].name; i++)
104 if(!a_strcmp(keyname, KeyModList[i].name))
105 return KeyModList[i].keysym;
107 return NoSymbol;
110 /** Lookup for a mouse button from its name
111 * \param button Mouse button name
112 * \return Mouse button or 0 if not found
114 static unsigned int
115 mouse_button_lookup(const char *button)
117 /** List of button name and corresponding X11 mask codes */
118 static const MouseButton MouseButtonList[] =
120 {"1", Button1},
121 {"2", Button2},
122 {"3", Button3},
123 {"4", Button4},
124 {"5", Button5},
125 {NULL, 0}
127 int i;
129 if(button)
130 for(i = 0; MouseButtonList[i].name; i++)
131 if(!a_strcmp(button, MouseButtonList[i].name))
132 return MouseButtonList[i].button;
134 return 0;
137 static Button *
138 parse_mouse_bindings(cfg_t * cfg, const char *secname, Bool handle_arg)
140 unsigned int i, j;
141 cfg_t *cfgsectmp;
142 Button *b = NULL, *head = NULL;
144 /* Mouse: layout click bindings */
145 for(i = 0; i < cfg_size(cfg, secname); i++)
147 /* init first elem */
148 if(i == 0)
149 head = b = p_new(Button, 1);
151 cfgsectmp = cfg_getnsec(cfg, secname, i);
152 for(j = 0; j < cfg_size(cfgsectmp, "modkey"); j++)
153 b->mod |= key_mask_lookup(cfg_getnstr(cfgsectmp, "modkey", j));
154 b->button = mouse_button_lookup(cfg_getstr(cfgsectmp, "button"));
155 b->func = name_func_lookup(cfg_getstr(cfgsectmp, "command"), UicbList);
156 if(!b->func)
157 warn("unknown command %s\n", cfg_getstr(cfgsectmp, "command"));
158 if(handle_arg)
159 b->arg = a_strdup(cfg_getstr(cfgsectmp, "arg"));
160 else
161 b->arg = NULL;
163 /* switch to next elem or finalize the list */
164 if(i < cfg_size(cfg, secname) - 1)
166 b->next = p_new(Button, 1);
167 b = b->next;
169 else
170 b->next = NULL;
173 return head;
177 static void
178 set_key_info(Key *key, cfg_t *cfg)
180 unsigned int j;
182 for(j = 0; j < cfg_size(cfg, "modkey"); j++)
183 key->mod |= key_mask_lookup(cfg_getnstr(cfg, "modkey", j));
184 key->func = name_func_lookup(cfg_getstr(cfg, "command"), UicbList);
185 if(!key->func)
186 warn("unknown command %s\n", cfg_getstr(cfg, "command"));
190 static Key *
191 section_keys(cfg_t *cfg_keys)
193 Key *key, *head;
194 unsigned int i, j, numkeys;
195 cfg_t *cfgkeytmp;
197 head = key = NULL;
198 for(i = 0; i < cfg_size(cfg_keys, "key"); i++)
200 if (i == 0)
201 key = head = p_new(Key, 1);
202 else
204 key->next = p_new(Key, 1);
205 key = key->next;
207 cfgkeytmp = cfg_getnsec(cfg_keys, "key", i);
208 set_key_info(key, cfgkeytmp);
209 key->keysym = XStringToKeysym(cfg_getstr(cfgkeytmp, "key"));
210 key->arg = a_strdup(cfg_getstr(cfgkeytmp, "arg"));
213 for(i = 0; i < cfg_size(cfg_keys, "keylist"); i++)
215 cfgkeytmp = cfg_getnsec(cfg_keys, "keylist", i);
216 numkeys = cfg_size(cfgkeytmp, "keylist");
217 if (numkeys != cfg_size(cfgkeytmp, "arglist"))
219 warn("number of keys != number of args in keylist");
220 continue;
222 for(j=0; j < numkeys; j++)
224 if (head == NULL)
226 key = p_new(Key, 1);
227 head = key;
229 else
231 key->next = p_new(Key, 1);
232 key = key->next;
234 set_key_info(key, cfgkeytmp);
235 key->keysym = XStringToKeysym(cfg_getnstr(cfgkeytmp, "keylist", j));
236 key->arg = a_strdup(cfg_getnstr(cfgkeytmp, "arglist", j));
237 if(j < numkeys - 1)
239 key->next = p_new(Key, 1);
240 key = key->next;
244 if (key)
245 key->next = NULL;
246 return head;
250 static int
251 cmp_widget_cfg(const void *a, const void *b)
253 if (((cfg_t*)a)->line < ((cfg_t*)b)->line)
254 return -1;
256 if (((cfg_t*)a)->line > ((cfg_t*)b)->line)
257 return 1;
259 return 0;
262 static void
263 create_widgets(cfg_t* cfg_statusbar, Statusbar *statusbar)
265 cfg_t* widgets, *wptr;
266 Widget *widget = NULL;
267 unsigned int i, j, numwidgets = 0;
268 WidgetConstructor *widget_new;
270 for(i = 0; WidgetList[i].name; i++)
271 numwidgets += cfg_size(cfg_statusbar, WidgetList[i].name);
273 widgets = p_new(cfg_t, numwidgets);
274 wptr = widgets;
276 for(i = 0; WidgetList[i].name; i++)
277 for (j = 0; j < cfg_size(cfg_statusbar, WidgetList[i].name); j++)
279 memcpy(wptr,
280 cfg_getnsec(cfg_statusbar, WidgetList[i].name, j),
281 sizeof(cfg_t));
282 wptr++;
285 qsort(widgets, numwidgets, sizeof(cfg_t), cmp_widget_cfg);
287 for (i = 0; i < numwidgets; i++)
289 wptr = widgets + i;
290 widget_new = name_func_lookup(cfg_name(wptr), WidgetList);
291 if(widget_new)
293 if(!widget)
294 statusbar->widgets = widget = widget_new(statusbar, wptr);
295 else
297 widget->next = widget_new(statusbar, wptr);
298 widget = widget->next;
300 widget->buttons = parse_mouse_bindings(wptr, "mouse", a_strcmp(cfg_name(wptr), "taglist"));
302 else
303 warn("Ignoring unknown widget: %s.\n", cfg_name(widgets + i));
307 static void
308 config_parse_screen(cfg_t *cfg, int screen)
310 char buf[2];
311 const char *tmp;
312 Layout *layout = NULL;
313 Tag *tag = NULL;
314 Statusbar *statusbar = NULL;
315 cfg_t *cfg_general, *cfg_colors, *cfg_screen, *cfg_tags,
316 *cfg_layouts, *cfg_padding, *cfgsectmp;
317 VirtScreen *virtscreen = &globalconf.screens[screen];
318 unsigned int i;
319 int phys_screen = get_phys_screen(screen);
321 snprintf(buf, sizeof(buf), "%d", screen);
322 cfg_screen = cfg_gettsec(cfg, "screen", buf);
323 if(!cfg_screen)
324 cfg_screen = cfg_getsec(cfg, "screen");
326 if(!cfg_screen)
328 warn("parsing configuration file failed, no screen section found\n");
329 cfg_parse_buf(cfg, AWESOME_DEFAULT_CONFIG);
330 cfg_screen = cfg_getsec(cfg, "screen");
333 /* get screen specific sections */
334 cfg_tags = cfg_getsec(cfg_screen, "tags");
335 cfg_colors = cfg_getsec(cfg_screen, "colors");
336 cfg_general = cfg_getsec(cfg_screen, "general");
337 cfg_layouts = cfg_getsec(cfg_screen, "layouts");
338 cfg_padding = cfg_getsec(cfg_screen, "padding");
341 /* General section */
342 virtscreen->borderpx = cfg_getint(cfg_general, "border");
343 virtscreen->snap = cfg_getint(cfg_general, "snap");
344 virtscreen->resize_hints = cfg_getbool(cfg_general, "resize_hints");
345 virtscreen->opacity_unfocused = cfg_getint(cfg_general, "opacity_unfocused");
346 virtscreen->focus_move_pointer = cfg_getbool(cfg_general, "focus_move_pointer");
347 virtscreen->allow_lower_floats = cfg_getbool(cfg_general, "allow_lower_floats");
348 virtscreen->sloppy_focus = cfg_getbool(cfg_general, "sloppy_focus");
349 virtscreen->new_become_master = cfg_getbool(cfg_general, "new_become_master");
350 virtscreen->font = XftFontOpenName(globalconf.display,
351 phys_screen,
352 cfg_getstr(cfg_general, "font"));
353 if(!virtscreen->font)
354 eprint("awesome: cannot init font\n");
356 /* Colors */
357 virtscreen->colors_normal[ColBorder] = initxcolor(phys_screen,
358 cfg_getstr(cfg_colors, "normal_border"));
359 virtscreen->colors_normal[ColBG] = initxcolor(phys_screen,
360 cfg_getstr(cfg_colors, "normal_bg"));
361 virtscreen->colors_normal[ColFG] = initxcolor(phys_screen,
362 cfg_getstr(cfg_colors, "normal_fg"));
363 virtscreen->colors_selected[ColBorder] = initxcolor(phys_screen,
364 cfg_getstr(cfg_colors, "focus_border"));
365 virtscreen->colors_selected[ColBG] = initxcolor(phys_screen,
366 cfg_getstr(cfg_colors, "focus_bg"));
367 virtscreen->colors_selected[ColFG] = initxcolor(phys_screen,
368 cfg_getstr(cfg_colors, "focus_fg"));
369 virtscreen->colors_urgent[ColBG] = initxcolor(phys_screen,
370 cfg_getstr(cfg_colors, "urgent_bg"));
371 virtscreen->colors_urgent[ColFG] = initxcolor(phys_screen,
372 cfg_getstr(cfg_colors, "urgent_fg"));
374 /* Statusbar */
376 if(cfg_size(cfg_screen, "statusbar"))
378 virtscreen->statusbar = statusbar = p_new(Statusbar, 1);
379 for(i = 0; i < cfg_size(cfg_screen, "statusbar"); i++)
381 cfgsectmp = cfg_getnsec(cfg_screen, "statusbar", i);
382 statusbar->position = statusbar->dposition =
383 statusbar_get_position_from_str(cfg_getstr(cfgsectmp, "position"));
384 statusbar->height = cfg_getint(cfgsectmp, "height");
385 statusbar->width = cfg_getint(cfgsectmp, "width");
386 statusbar->name = a_strdup(cfg_title(cfgsectmp));
387 create_widgets(cfgsectmp, statusbar);
389 if(i < cfg_size(cfg_screen, "statusbar") - 1)
390 statusbar = statusbar->next = p_new(Statusbar, 1);
394 /* Layouts */
395 virtscreen->layouts = layout = p_new(Layout, 1);
396 if(cfg_size(cfg_layouts, "layout"))
397 for(i = 0; i < cfg_size(cfg_layouts, "layout"); i++)
399 cfgsectmp = cfg_getnsec(cfg_layouts, "layout", i);
400 layout->arrange = name_func_lookup(cfg_title(cfgsectmp), LayoutsList);
401 if(!layout->arrange)
403 warn("unknown layout %s in configuration file\n", cfg_title(cfgsectmp));
404 layout->image = NULL;
405 continue;
407 layout->image = a_strdup(cfg_getstr(cfgsectmp, "image"));
409 if(i < cfg_size(cfg_layouts, "layout") - 1)
410 layout = layout->next = p_new(Layout, 1);
412 else
414 warn("no default layout available\n");
415 layout->arrange = layout_tile;
418 /* Tags */
419 virtscreen->tags = tag = p_new(Tag, 1);
420 if(cfg_size(cfg_tags, "tag"))
421 for(i = 0; i < cfg_size(cfg_tags, "tag"); i++)
423 cfgsectmp = cfg_getnsec(cfg_tags, "tag", i);
424 tag->name = a_strdup(cfg_title(cfgsectmp));
425 tag->selected = False;
426 tag->was_selected = False;
427 tmp = cfg_getstr(cfgsectmp, "layout");
428 for(layout = virtscreen->layouts;
429 layout && layout->arrange != name_func_lookup(tmp, LayoutsList); layout = layout->next);
430 if(!layout)
431 tag->layout = virtscreen->layouts;
432 else
433 tag->layout = layout;
434 tag->mwfact = cfg_getfloat(cfgsectmp, "mwfact");
435 tag->nmaster = cfg_getint(cfgsectmp, "nmaster");
436 tag->ncol = cfg_getint(cfgsectmp, "ncol");
438 if(i < cfg_size(cfg_tags, "tag") - 1)
439 tag = tag->next = p_new(Tag, 1);
440 else
441 tag->next = NULL;
443 else
445 warn("fatal: no tags found in configuration file\n");
446 tag->name = a_strdup("default");
447 tag->layout = virtscreen->layouts;
448 tag->nmaster = 1;
449 tag->ncol = 1;
450 tag->mwfact = 0.5;
453 ewmh_update_net_numbers_of_desktop(phys_screen);
454 ewmh_update_net_current_desktop(phys_screen);
455 ewmh_update_net_desktop_names(phys_screen);
457 /* select first tag by default */
458 virtscreen->tags[0].selected = True;
459 virtscreen->tags[0].was_selected = True;
461 /* padding */
462 virtscreen->padding.top = cfg_getint(cfg_padding, "top");
463 virtscreen->padding.bottom = cfg_getint(cfg_padding, "bottom");
464 virtscreen->padding.left = cfg_getint(cfg_padding, "left");
465 virtscreen->padding.right = cfg_getint(cfg_padding, "right");
468 /** Parse configuration file and initialize some stuff
469 * \param confpatharg Path to configuration file
471 void
472 config_parse(const char *confpatharg)
474 static cfg_opt_t general_opts[] =
476 CFG_INT((char *) "border", 1, CFGF_NONE),
477 CFG_INT((char *) "snap", 8, CFGF_NONE),
478 CFG_BOOL((char *) "resize_hints", cfg_true, CFGF_NONE),
479 CFG_INT((char *) "opacity_unfocused", 100, CFGF_NONE),
480 CFG_BOOL((char *) "focus_move_pointer", cfg_false, CFGF_NONE),
481 CFG_BOOL((char *) "allow_lower_floats", cfg_false, CFGF_NONE),
482 CFG_BOOL((char *) "sloppy_focus", cfg_true, CFGF_NONE),
483 CFG_BOOL((char *) "new_become_master", cfg_true, CFGF_NONE),
484 CFG_STR((char *) "font", (char *) "mono-12", CFGF_NONE),
485 CFG_END()
487 static cfg_opt_t colors_opts[] =
489 CFG_STR((char *) "normal_border", (char *) "#111111", CFGF_NONE),
490 CFG_STR((char *) "normal_bg", (char *) "#111111", CFGF_NONE),
491 CFG_STR((char *) "normal_fg", (char *) "#eeeeee", CFGF_NONE),
492 CFG_STR((char *) "focus_border", (char *) "#6666ff", CFGF_NONE),
493 CFG_STR((char *) "focus_bg", (char *) "#6666ff", CFGF_NONE),
494 CFG_STR((char *) "focus_fg", (char *) "#ffffff", CFGF_NONE),
495 CFG_STR((char *) "urgent_bg", (char *) "#ff0000", CFGF_NONE),
496 CFG_STR((char *) "urgent_fg", (char *) "#ffffff", CFGF_NONE),
497 CFG_STR((char *) "tab_border", (char *) "#ff0000", CFGF_NONE),
498 CFG_END()
500 static cfg_opt_t mouse_taglist_opts[] =
502 CFG_STR_LIST((char *) "modkey", (char *) "{}", CFGF_NONE),
503 CFG_STR((char *) "button", (char *) "None", CFGF_NONE),
504 CFG_STR((char *) "command", (char *) "", CFGF_NONE),
505 CFG_END()
507 static cfg_opt_t mouse_generic_opts[] =
509 CFG_STR_LIST((char *) "modkey", (char *) "{}", CFGF_NONE),
510 CFG_STR((char *) "button", (char *) "None", CFGF_NONE),
511 CFG_STR((char *) "command", (char *) "", CFGF_NONE),
512 CFG_STR((char *) "arg", NULL, CFGF_NONE),
513 CFG_END()
515 static cfg_opt_t widget_opts[] =
517 CFG_INT((char *) "x", 0xffffffff, CFGF_NONE),
518 CFG_INT((char *) "y", 0xffffffff, CFGF_NONE),
519 CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
520 CFG_END()
522 static cfg_opt_t widget_taglist_opts[] =
524 CFG_INT((char *) "x", 0xffffffff, CFGF_NONE),
525 CFG_INT((char *) "y", 0xffffffff, CFGF_NONE),
526 CFG_SEC((char *) "mouse", mouse_taglist_opts, CFGF_MULTI),
527 CFG_END()
529 static cfg_opt_t widget_iconbox_opts[] =
531 CFG_INT((char *) "x", 0xffffffff, CFGF_NONE),
532 CFG_INT((char *) "y", 0xffffffff, CFGF_NONE),
533 CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
534 CFG_STR((char *) "image", (char *) NULL, CFGF_NONE),
535 CFG_BOOL((char *) "resize", cfg_true, CFGF_NONE),
536 CFG_END()
538 static cfg_opt_t widget_textbox_opts[] =
540 CFG_INT((char *) "x", 0xffffffff, CFGF_NONE),
541 CFG_INT((char *) "y", 0xffffffff, CFGF_NONE),
542 CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
543 CFG_INT((char *) "width", 0, CFGF_NONE),
544 CFG_STR((char *) "text", (char *) NULL, CFGF_NONE),
545 CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
546 CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
547 CFG_STR((char *) "font", (char *) NULL, CFGF_NONE),
548 CFG_STR((char *) "align", (char *) "center", CFGF_NONE),
549 CFG_END()
551 static cfg_opt_t widget_focustitle_opts[] =
553 CFG_INT((char *) "x", 0xffffffff, CFGF_NONE),
554 CFG_INT((char *) "y", 0xffffffff, CFGF_NONE),
555 CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
556 CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
557 CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
558 CFG_STR((char *) "font", (char *) NULL, CFGF_NONE),
559 CFG_STR((char *) "align", (char *) "left", CFGF_NONE),
560 CFG_END()
562 static cfg_opt_t widget_tasklist_opts[] =
564 CFG_INT((char *) "x", 0xffffffff, CFGF_NONE),
565 CFG_INT((char *) "y", 0xffffffff, CFGF_NONE),
566 CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
567 CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
568 CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
569 CFG_STR((char *) "focus_fg", (char *) NULL, CFGF_NONE),
570 CFG_STR((char *) "focus_bg", (char *) NULL, CFGF_NONE),
571 CFG_STR((char *) "font", (char *) NULL, CFGF_NONE),
572 CFG_STR((char *) "align", (char *) "left", CFGF_NONE),
573 CFG_BOOL((char *) "show_icons", cfg_true, CFGF_NONE),
574 CFG_END()
576 static cfg_opt_t widget_progressbar_bar_opts[] =
578 CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
579 CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
580 CFG_STR((char *) "bcolor", (char *) NULL, CFGF_NONE),
582 static cfg_opt_t widget_progressbar_opts[] =
584 CFG_INT((char *) "x", 0xffffffff, CFGF_NONE),
585 CFG_INT((char *) "y", 0xffffffff, CFGF_NONE),
586 CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
587 CFG_SEC((char *) "bar", widget_progressbar_bar_opts, CFGF_MULTI),
588 CFG_INT((char *) "width", 100, CFGF_NONE),
589 CFG_INT((char *) "gap", 2, CFGF_NONE),
590 CFG_INT((char *) "lpadding", 3, CFGF_NONE),
591 CFG_FLOAT((char *) "height", 0.67, CFGF_NONE),
592 CFG_END()
594 static cfg_opt_t statusbar_opts[] =
596 CFG_STR((char *) "position", (char *) "top", CFGF_NONE),
597 CFG_INT((char *) "height", 0, CFGF_NONE),
598 CFG_INT((char *) "width", 0, CFGF_NONE),
599 CFG_SEC((char *) "textbox", widget_textbox_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
600 CFG_SEC((char *) "taglist", widget_taglist_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
601 CFG_SEC((char *) "focustitle", widget_focustitle_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
602 CFG_SEC((char *) "layoutinfo", widget_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
603 CFG_SEC((char *) "iconbox", widget_iconbox_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
604 CFG_SEC((char *) "netwmicon", widget_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
605 CFG_SEC((char *) "progressbar", widget_progressbar_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
606 CFG_SEC((char *) "tasklist", widget_tasklist_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
607 CFG_END()
609 static cfg_opt_t tag_opts[] =
611 CFG_STR((char *) "layout", (char *) "tile", CFGF_NONE),
612 CFG_FLOAT((char *) "mwfact", 0.5, CFGF_NONE),
613 CFG_INT((char *) "nmaster", 1, CFGF_NONE),
614 CFG_INT((char *) "ncol", 1, CFGF_NONE),
615 CFG_END()
617 static cfg_opt_t tags_opts[] =
619 CFG_SEC((char *) "tag", tag_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
620 CFG_END()
622 static cfg_opt_t layout_opts[] =
624 CFG_STR((char *) "image", NULL, CFGF_NONE),
625 CFG_END()
627 static cfg_opt_t layouts_opts[] =
629 CFG_SEC((char *) "layout", layout_opts, CFGF_TITLE | CFGF_MULTI),
630 CFG_END()
632 static cfg_opt_t padding_opts[] =
634 CFG_INT((char *) "top", 0, CFGF_NONE),
635 CFG_INT((char *) "bottom", 0, CFGF_NONE),
636 CFG_INT((char *) "right", 0, CFGF_NONE),
637 CFG_INT((char *) "left", 0, CFGF_NONE),
638 CFG_END()
640 static cfg_opt_t screen_opts[] =
642 CFG_SEC((char *) "general", general_opts, CFGF_NONE),
643 CFG_SEC((char *) "statusbar", statusbar_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
644 CFG_SEC((char *) "tags", tags_opts, CFGF_NONE),
645 CFG_SEC((char *) "colors", colors_opts, CFGF_NONE),
646 CFG_SEC((char *) "layouts", layouts_opts, CFGF_NONE),
647 CFG_SEC((char *) "padding", padding_opts, CFGF_NONE),
648 CFG_END()
650 static cfg_opt_t rule_opts[] =
652 CFG_STR((char *) "xproperty_name", NULL, CFGF_NONE),
653 CFG_STR((char *) "xproperty_value", NULL, CFGF_NONE),
654 CFG_STR((char *) "name", NULL, CFGF_NONE),
655 CFG_STR((char *) "tags", NULL, CFGF_NONE),
656 CFG_STR((char *) "icon", NULL, CFGF_NONE),
657 CFG_BOOL((char *) "float", cfg_false, CFGF_NONE),
658 CFG_INT((char *) "screen", RULE_NOSCREEN, CFGF_NONE),
659 CFG_BOOL((char *) "not_master", cfg_false, CFGF_NONE),
660 CFG_END()
662 static cfg_opt_t rules_opts[] =
664 CFG_SEC((char *) "rule", rule_opts, CFGF_MULTI),
665 CFG_END()
667 static cfg_opt_t key_opts[] =
669 CFG_STR_LIST((char *) "modkey", (char *) "{Mod4}", CFGF_NONE),
670 CFG_STR((char *) "key", (char *) "None", CFGF_NONE),
671 CFG_STR((char *) "command", (char *) "", CFGF_NONE),
672 CFG_STR((char *) "arg", NULL, CFGF_NONE),
673 CFG_END()
675 static cfg_opt_t keylist_opts[] =
677 CFG_STR_LIST((char *) "modkey", (char *) "{Mod4}", CFGF_NONE),
678 CFG_STR_LIST((char *) "keylist", (char *) NULL, CFGF_NONE),
679 CFG_STR((char *) "command", (char *) "", CFGF_NONE),
680 CFG_STR_LIST((char *) "arglist", NULL, CFGF_NONE),
681 CFG_END()
683 static cfg_opt_t keys_opts[] =
685 CFG_SEC((char *) "key", key_opts, CFGF_MULTI),
686 CFG_SEC((char *) "keylist", keylist_opts, CFGF_MULTI),
687 CFG_END()
689 static cfg_opt_t mouse_opts[] =
691 CFG_SEC((char *) "root", mouse_generic_opts, CFGF_MULTI),
692 CFG_SEC((char *) "client", mouse_generic_opts, CFGF_MULTI),
693 CFG_END()
695 static cfg_opt_t opts[] =
697 CFG_SEC((char *) "screen", screen_opts, CFGF_TITLE | CFGF_MULTI | CFGF_NO_TITLE_DUPES),
698 CFG_SEC((char *) "rules", rules_opts, CFGF_NONE),
699 CFG_SEC((char *) "keys", keys_opts, CFGF_NONE),
700 CFG_SEC((char *) "mouse", mouse_opts, CFGF_NONE),
701 CFG_END()
703 cfg_t *cfg, *cfg_rules, *cfg_keys, *cfg_mouse, *cfgsectmp;
704 int ret, screen;
705 unsigned int i = 0;
706 const char *homedir;
707 char *confpath;
708 ssize_t confpath_len;
709 Rule *rule = NULL;
710 FILE *defconfig = NULL;
712 if(confpatharg)
713 confpath = a_strdup(confpatharg);
714 else
716 homedir = getenv("HOME");
717 confpath_len = a_strlen(homedir) + a_strlen(AWESOME_CONFIG_FILE) + 2;
718 confpath = p_new(char, confpath_len);
719 a_strcpy(confpath, confpath_len, homedir);
720 a_strcat(confpath, confpath_len, "/");
721 a_strcat(confpath, confpath_len, AWESOME_CONFIG_FILE);
724 globalconf.configpath = a_strdup(confpath);
726 cfg = cfg_init(opts, CFGF_NONE);
728 ret = cfg_parse(cfg, confpath);
729 if(ret == CFG_FILE_ERROR)
731 perror("awesome: parsing configuration file failed");
732 if(!(defconfig = fopen(confpath, "w")))
733 perror("awesome: unable to create default configuration file");
735 else if(ret == CFG_PARSE_ERROR)
736 cfg_error(cfg, "awesome: parsing configuration file %s failed.\n", confpath);
737 if(ret != CFG_SUCCESS) {
738 fprintf(stderr, "Using default compile-time configuration\n");
739 cfg_free(cfg);
740 cfg = cfg_init(opts, CFGF_NONE);
741 cfg_parse_buf(cfg, AWESOME_DEFAULT_CONFIG);
744 /* get the right screen section */
745 for(screen = 0; screen < get_screen_count(); screen++)
746 config_parse_screen(cfg, screen);
748 /* get general sections */
749 cfg_rules = cfg_getsec(cfg, "rules");
750 cfg_keys = cfg_getsec(cfg, "keys");
751 cfg_mouse = cfg_getsec(cfg, "mouse");
753 /* Rules */
754 if(cfg_size(cfg_rules, "rule"))
756 globalconf.rules = rule = p_new(Rule, 1);
757 for(i = 0; i < cfg_size(cfg_rules, "rule"); i++)
759 cfgsectmp = cfg_getnsec(cfg_rules, "rule", i);
760 rule->prop_r = rules_compile_regex(cfg_getstr(cfgsectmp, "name"));
761 rule->tags_r = rules_compile_regex(cfg_getstr(cfgsectmp, "tags"));
762 rule->xprop = a_strdup(cfg_getstr(cfgsectmp, "xproperty_name"));
763 rule->xpropval_r = rules_compile_regex(cfg_getstr(cfgsectmp, "xproperty_value"));
764 rule->icon = a_strdup(cfg_getstr(cfgsectmp, "icon"));
765 rule->isfloating = cfg_getbool(cfgsectmp, "float");
766 rule->screen = cfg_getint(cfgsectmp, "screen");
767 rule->not_master = cfg_getbool(cfgsectmp, "not_master");
768 if(rule->screen >= get_screen_count())
769 rule->screen = 0;
771 if(i < cfg_size(cfg_rules, "rule") - 1)
772 rule = rule->next = p_new(Rule, 1);
773 else
774 rule->next = NULL;
777 else
778 globalconf.rules = NULL;
780 /* Mouse: root window click bindings */
781 globalconf.buttons.root = parse_mouse_bindings(cfg_mouse, "root", True);
783 /* Mouse: client windows click bindings */
784 globalconf.buttons.client = parse_mouse_bindings(cfg_mouse, "client", True);
786 /* Keys */
787 globalconf.numlockmask = get_numlockmask(globalconf.display);
789 globalconf.keys = section_keys(cfg_keys);
791 if(defconfig)
793 cfg_print(cfg, defconfig);
794 fclose(defconfig);
797 /* Free! Like a river! */
798 cfg_free(cfg);
799 p_delete(&confpath);
802 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80