]> icculus.org git repositories - dana/openbox.git/blob - openbox/config.h
start of showing/rendering menus. woot!
[dana/openbox.git] / openbox / config.h
1 #ifndef __config_h
2 #define __config_h
3
4 #include <glib.h>
5
6 /*! Should new windows be focused */
7 extern gboolean config_focus_new;
8 /*! Focus windows when the mouse enters them */
9 extern gboolean config_focus_follow;
10 /*! Focus the last focused window as a fallback */
11 extern gboolean config_focus_last;
12 /*! Focus the last focused window as a fallback when switching desktops */
13 extern gboolean config_focus_last_on_desktop;
14
15 /* The name of the theme */
16 char *config_theme;
17
18 /*! The number of desktops */
19 extern int config_desktops_num;
20 /*! Names for the desktops */
21 extern GSList *config_desktops_names;
22
23
24 void config_startup();
25 void config_shutdown();
26
27 #endif