cosmetic
This commit is contained in:
parent
e3c0478434
commit
604ab3e702
8
config.c
8
config.c
|
@ -40,7 +40,9 @@ typedef struct
|
|||
} KeyMod;
|
||||
|
||||
/** List of keyname and corresponding X11 mask codes */
|
||||
static const KeyMod KeyModList[] = { {"Shift", ShiftMask},
|
||||
static const KeyMod KeyModList[] =
|
||||
{
|
||||
{"Shift", ShiftMask},
|
||||
{"Lock", LockMask},
|
||||
{"Control", ControlMask},
|
||||
{"Mod1", Mod1Mask},
|
||||
|
@ -52,7 +54,9 @@ static const KeyMod KeyModList[] = { {"Shift", ShiftMask},
|
|||
};
|
||||
|
||||
/** List of available layouts and link between name and functions */
|
||||
static const NameFuncLink LayoutsList[] = { {"tile", tile},
|
||||
static const NameFuncLink LayoutsList[] =
|
||||
{
|
||||
{"tile", tile},
|
||||
{"tileleft", tileleft},
|
||||
{"floating", floating},
|
||||
{"grid", grid},
|
||||
|
|
Loading…
Reference in New Issue