|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <X11/XF86keysym.h>
|
|
/* appearance */
|
|
static const int rmaster = 0; /* 1 = master at right*/
|
|
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
|
|
static const unsigned int systrayspacing = 2; /* systray spacing */
|
|
static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
|
|
static const int showsystray = 1; /* 0 means no systray */
|
|
static const int tag_padding = 0;
|
|
static const int vertpad = 0; /* vertical padding of bar */
|
|
static const int sidepad = 0; /* horizontal padding of bar */
|
|
|
|
/* tagging */
|
|
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"};
|
|
//static const char *alttags[] = { "", "", "", ""};
|
|
|
|
/* layout(s) */
|
|
static const float mfact = 0.5; /* factor of master area size [0.05..0.95] */
|
|
static const int nmaster = 1; /* number of clients in master area */
|
|
static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
|
|
|
|
static const Layout layouts[] = {
|
|
/* symbol arrange function */
|
|
{ "鉶", tile }, /* first entry is default */
|
|
/* { "", dwindle }, */
|
|
{ "ﱖ", grid },
|
|
{ "", centeredmaster },
|
|
{ "", centeredfloatingmaster },
|
|
{ "[M]", monocle },
|
|
{ "[D]", deck },
|
|
{ NULL, NULL },
|
|
};
|