changed colors
This commit is contained in:
parent
74c92240b6
commit
32979a36c8
@ -17,7 +17,7 @@ static const char col_gray1[] = "#282828";
|
|||||||
static const char col_gray2[] = "#444444";
|
static const char col_gray2[] = "#444444";
|
||||||
static const char col_gray3[] = "#ebdbb2";
|
static const char col_gray3[] = "#ebdbb2";
|
||||||
static const char col_gray4[] = "#1d2021";
|
static const char col_gray4[] = "#1d2021";
|
||||||
static const char col_cyan[] = "#fe8019";
|
static const char col_cyan[] = "#d65d0e";
|
||||||
static const char *colors[][3] = {
|
static const char *colors[][3] = {
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
||||||
@ -65,6 +65,7 @@ static const Layout layouts[] = {
|
|||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||||
static const char *termcmd[] = { "st", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
|
static const char *flameshot[] = { "flameshot", "gui", NULL };
|
||||||
/* multimedia */
|
/* multimedia */
|
||||||
static const char *volup[] = { "/home/murat/scripts/sesac.sh", NULL };
|
static const char *volup[] = { "/home/murat/scripts/sesac.sh", NULL };
|
||||||
static const char *voldown[] = { "/home/murat/scripts/seskis.sh", NULL };
|
static const char *voldown[] = { "/home/murat/scripts/seskis.sh", NULL };
|
||||||
@ -81,6 +82,7 @@ static const Key keys[] = {
|
|||||||
/* modifier key function argument */
|
/* modifier key function argument */
|
||||||
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
|
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
|
||||||
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
|
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
|
||||||
|
{ MODKEY|ShiftMask, XK_s, spawn, {.v = flameshot } },
|
||||||
{ MODKEY, XK_b, togglebar, {0} },
|
{ MODKEY, XK_b, togglebar, {0} },
|
||||||
{ MODKEY, XK_j, focusstack, {.i = +1 } },
|
{ MODKEY, XK_j, focusstack, {.i = +1 } },
|
||||||
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
{ MODKEY, XK_k, focusstack, {.i = -1 } },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user