all repos — openbox @ 6cebd34855d6e29345ca821a17feb82753982e7e

openbox fork - make it a bit more like ryudo

add booleans
Dana Jansens danakj@orodu.net
commit

6cebd34855d6e29345ca821a17feb82753982e7e

parent

ddb5d43edc8bb35dadaa83fc3b516a43c1674cc9

2 files changed, 4 insertions(+), 2 deletions(-)

jump to
M openbox/config.copenbox/config.c

@@ -35,7 +35,7 @@ config_def_set(config_def_new("font", Config_String,

"Titlebar Font", "The fontstring specifying the font to " "be used in window titlebars.")); - config_def_set(config_def_new("font.shadow", Config_Integer, + config_def_set(config_def_new("font.shadow", Config_Bool, "Titlebar Font Shadow", "Whether or not the text in the window " "titlebars gets a drop shadow."));
M openbox/config.hopenbox/config.h

@@ -5,12 +5,14 @@ #include <glib.h>

typedef enum { Config_String, - Config_Integer + Config_Integer, + Config_Bool } ConfigValueType; typedef union { char *string; int integer; + gboolean bool; } ConfigValue; typedef struct {