latest stable

This commit is contained in:
Filip Rojek 2023-05-31 15:05:05 +02:00
parent dddc54c15e
commit 97fba86edb
6 changed files with 10 additions and 5 deletions

View File

@ -6,12 +6,14 @@ static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" }; static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10"; static const char *fonts[] = { "JetBrains Mono Nerd Font:size=11:antialias=true:autohint=true" };
static const char dmenufont[] = "JetBrains Mono Nerd Font:size=12";
static const char col_gray1[] = "#222222"; static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb"; static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee"; static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#005577"; //static const char col_cyan[] = "#005577";
static const char col_cyan[] = "#d90429";
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 },
@ -84,6 +86,7 @@ static const Key keys[] = {
{ 0, 123, spawn, {.v = volume[0]} }, { 0, 123, spawn, {.v = volume[0]} },
{ 0, 122, spawn, {.v = volume[1]} }, { 0, 122, spawn, {.v = volume[1]} },
{ 0, 121, spawn, {.v = volume[2]} }, { 0, 121, spawn, {.v = volume[2]} },
{ MODKEY|ShiftMask, 65, spawn, SHCMD("setxkbmap -query | grep 'us' && setxkbmap cz qwerty || setxkbmap us")},
{ MODKEY, 33, spawn, {.v = dmenucmd } }, // p { MODKEY, 33, spawn, {.v = dmenucmd } }, // p
{ MODKEY|ShiftMask, 36, spawn, {.v = termcmd } }, // Return { MODKEY|ShiftMask, 36, spawn, {.v = termcmd } }, // Return
{ MODKEY, 56, togglebar, {0} }, // b { MODKEY, 56, togglebar, {0} }, // b

View File

@ -11,7 +11,8 @@ static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb"; static const char col_gray3[] = "#bbbbbb";
static const char col_gray4[] = "#eeeeee"; static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#005577"; //static const char col_cyan[] = "#005577";
static const char col_cyan[] = "#ff0000";
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 },
@ -84,6 +85,7 @@ static const Key keys[] = {
{ 0, 123, spawn, {.v = volume[0]} }, { 0, 123, spawn, {.v = volume[0]} },
{ 0, 122, spawn, {.v = volume[1]} }, { 0, 122, spawn, {.v = volume[1]} },
{ 0, 121, spawn, {.v = volume[2]} }, { 0, 121, spawn, {.v = volume[2]} },
{ MODKEY|ShiftMask, 65, spawn, SHCMD("setxkbmap -query | grep 'us' && setxkbmap cz qwerty || setxkbmap us")},
{ MODKEY, 33, spawn, {.v = dmenucmd } }, // p { MODKEY, 33, spawn, {.v = dmenucmd } }, // p
{ MODKEY|ShiftMask, 36, spawn, {.v = termcmd } }, // Return { MODKEY|ShiftMask, 36, spawn, {.v = termcmd } }, // Return
{ MODKEY, 56, togglebar, {0} }, // b { MODKEY, 56, togglebar, {0} }, // b

BIN
drw.o

Binary file not shown.

BIN
dwm

Binary file not shown.

BIN
dwm.o

Binary file not shown.

BIN
util.o

Binary file not shown.