Update suckless config

This commit is contained in:
Hektor Misplon
2020-04-08 19:20:42 +00:00
parent ed0c3e9b5f
commit 24c8c90aea
8 changed files with 204 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int gappx = 5; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
@@ -9,13 +9,13 @@ static const int topbar = 0; /* 0 means bottom bar */
static const char *fonts[] = { "Iosevka:size=10" };
static const char dmenufont[] = "Iosevka:size=10";
static const char col_gray1[] = "#000000";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
static const char col_gray2[] = "#222222";
static const char col_gray3[] = "#444444";
static const char col_gray4[] = "#eeeeee";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray2, col_gray1, col_gray1 },
[SchemeSel] = { col_gray3, col_gray1, col_gray2 },
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_gray1, col_gray3 },
};
/* tagging */
@@ -78,8 +78,8 @@ static Key keys[] = {
{ MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
{ MODKEY, XK_u, setlayout, {.v = &layouts[3]} },
{ MODKEY, XK_o, setlayout, {.v = &layouts[4]} },
{ MODKEY, XK_u, setlayout, {.v = &layouts[3]} },
{ MODKEY|ShiftMask, XK_u, setlayout, {.v = &layouts[4]} },
{ MODKEY, XK_space, setlayout, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },