Reformat config.def.h
This commit is contained in:
parent
104b7f1fc9
commit
15533ee00e
43
config.def.h
43
config.def.h
|
@ -3,13 +3,13 @@
|
|||
#include <X11/XF86keysym.h>
|
||||
|
||||
/* appearance */
|
||||
static const unsigned int borderpx = 4; /* border pixel of windows */
|
||||
static const unsigned int borderpx = 4;/* border pixel of windows */
|
||||
static const unsigned int gappx = 15; /* gaps between windows */
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const int showbar= 1;/* 0 means no bar */
|
||||
static const int topbar = 1;/* 0 means bottom bar */
|
||||
static const char statussep = ';';
|
||||
static const int horizpadbar = 8; /* horizontal padding for statusbar */
|
||||
static const int horizpadbar= 8;/* horizontal padding for statusbar */
|
||||
static const int vertpadbar = 12; /* vertical padding for statusbar */
|
||||
static const char *fonts[] = { "Ubuntu Mono:size=12" };
|
||||
static const char dmenufont[] = "Ubuntu Mono:size=12";
|
||||
|
@ -17,7 +17,7 @@ static const char col_gray1[] = "#222222";
|
|||
static const char col_gray2[] = "#444444";
|
||||
static const char col_gray3[] = "#bbbbbb";
|
||||
static const char col_gray4[] = "#eeeeee";
|
||||
static const char col_cyan[] = "#005577";
|
||||
static const char col_cyan[]= "#005577";
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
||||
|
@ -64,8 +64,8 @@ static const Rule rules[] = {
|
|||
|
||||
/* layout(s) */
|
||||
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
||||
static const int nmaster = 1; /* number of clients in master area */
|
||||
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
|
||||
static const int nmaster = 1;/* number of clients in master area */
|
||||
static const int resizehints = 1;/* 1 means respect size hints in tiled resizals */
|
||||
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
||||
|
||||
#include "layouts.c"
|
||||
|
@ -126,7 +126,7 @@ static const Key keys[] = {
|
|||
{ SUPERKEY|ShiftMask, XK_Return, zoom, {0} },
|
||||
{ SUPERKEY, XK_q, killclient, {0} },
|
||||
{ SUPERKEY, XK_g, setlayout, {.v = &layouts[0]} },
|
||||
{ SUPERKEY, XK_t, setlayout, {.v = &layouts[1]} },
|
||||
// { SUPERKEY, XK_t, setlayout, {.v = &layouts[1]} },
|
||||
{ SUPERKEY, XK_f, setlayout, {.v = &layouts[2]} },
|
||||
{ SUPERKEY, XK_m, setlayout, {.v = &layouts[3]} },
|
||||
{ SUPERKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||
|
@ -135,25 +135,25 @@ static const Key keys[] = {
|
|||
// { SUPERKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
|
||||
// { SUPERKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
|
||||
{ SUPERKEY|ShiftMask, XK_f, togglefullscr, {0} },
|
||||
TAGKEYS( XK_1, 0)
|
||||
TAGKEYS( XK_2, 1)
|
||||
TAGKEYS( XK_3, 2)
|
||||
TAGKEYS( XK_4, 3)
|
||||
TAGKEYS( XK_5, 4)
|
||||
TAGKEYS( XK_6, 5)
|
||||
TAGKEYS( XK_7, 6)
|
||||
TAGKEYS( XK_8, 7)
|
||||
TAGKEYS( XK_9, 8)
|
||||
TAGKEYS( XK_0, 9)
|
||||
TAGKEYS( XK_minus, 10)
|
||||
TAGKEYS( XK_equal, 11)
|
||||
TAGKEYS(XK_1, 0)
|
||||
TAGKEYS(XK_2, 1)
|
||||
TAGKEYS(XK_3, 2)
|
||||
TAGKEYS(XK_4, 3)
|
||||
TAGKEYS(XK_5, 4)
|
||||
TAGKEYS(XK_6, 5)
|
||||
TAGKEYS(XK_7, 6)
|
||||
TAGKEYS(XK_8, 7)
|
||||
TAGKEYS(XK_9, 8)
|
||||
TAGKEYS(XK_0, 9)
|
||||
TAGKEYS(XK_minus, 10)
|
||||
TAGKEYS(XK_equal, 11)
|
||||
{ SUPERKEY|ShiftMask, XK_q, quitprompt, {0} },
|
||||
};
|
||||
|
||||
/* button definitions */
|
||||
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
||||
static const Button buttons[] = {
|
||||
/* click event mask button function argument */
|
||||
/* clickevent mask button function argument */
|
||||
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
|
||||
{ ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
|
||||
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
|
||||
|
@ -165,4 +165,3 @@ static const Button buttons[] = {
|
|||
{ ClkTagBar, SUPERKEY, Button1, tag, {0} },
|
||||
{ ClkTagBar, SUPERKEY, Button3, toggletag, {0} },
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue