]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/config.h
all my changes while i was offline.
[mikachu/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 /*! Show a popup dialog while cycling focus */
15 extern gboolean config_focus_popup;
16
17 /* The name of the theme */
18 char *config_theme;
19
20 /*! The number of desktops */
21 extern int config_desktops_num;
22 /*! Names for the desktops */
23 extern GSList *config_desktops_names;
24
25
26 void config_startup();
27 void config_shutdown();
28
29 #endif