Minor change to `Makefile` to set FreeBSD paths as default.
[xmenu] / config.h
index ae7e59a..254201c 100644 (file)
--- a/config.h
+++ b/config.h
@@ -16,6 +16,10 @@ static struct Config config = {
        .border_pixels = 1,         /* menu border */
        .separator_pixels = 3,      /* space around separator */
        .gap_pixels = 0,            /* gap between menus */
        .border_pixels = 1,         /* menu border */
        .separator_pixels = 3,      /* space around separator */
        .gap_pixels = 0,            /* gap between menus */
+       .max_items = 0,             /* maximum number of items of a menu, 0 to compute based on monitor height */
+
+       /* text alignment, set to LeftAlignment, CenterAlignment or RightAlignment */
+       .alignment = LeftAlignment,
 
        /*
         * The variables below cannot be set by X resources.
 
        /*
         * The variables below cannot be set by X resources.
@@ -38,9 +42,8 @@ static struct Config config = {
  *
  * Look at your /usr/include/X11/keysymdef.h  (or the equivalent file
  * in your system) for a list of key symbol constants, and change the
  *
  * Look at your /usr/include/X11/keysymdef.h  (or the equivalent file
  * in your system) for a list of key symbol constants, and change the
- * macros below accordingly.  Note there IS NO equal sign (=) between
- * the macros and their values.   All key symbol constants begin with
- * the prefix XK_
+ * macros below accordingly.  All key symbol constants begin with the
+ * prefix XK_.
  *
  * For example, to use vim-like key bindings, set KEYSYMLEFT to XK_h,
  * KEYSYMDOWN to XK_j, KEYSYMUP to XK_k, etc.
  *
  * For example, to use vim-like key bindings, set KEYSYMLEFT to XK_h,
  * KEYSYMDOWN to XK_j, KEYSYMUP to XK_k, etc.