X-Git-Url: http://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/7b166488b17ae35da1cbcb86e645a68a174e93a2..88341d204bd1ad3f95943190a6eea22cb4bf07da:/config.h diff --git a/config.h b/config.h index ae7e59a..6eb9b7c 100644 --- a/config.h +++ b/config.h @@ -17,6 +17,9 @@ static struct Config config = { .separator_pixels = 3, /* space around separator */ .gap_pixels = 0, /* gap between menus */ + /* text alignment, set to LeftAlignment, CenterAlignment or RightAlignment */ + .alignment = LeftAlignment, + /* * The variables below cannot be set by X resources. * Their values must be less than .height_pixels. @@ -38,9 +41,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 - * 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.