diff --git a/README.md b/README.md index 7ceb515..dc792e6 100644 --- a/README.md +++ b/README.md @@ -9,16 +9,16 @@ This is my version of dwm with applied patches. Feel free to use it but I recomm ## Features (patches) - **[anybar](https://dwm.suckless.org/patches/anybar/)** - Use any bar. Polybar is default here. + Use any bar. Polybar is default here. ( USING DMENU ) - **[IPC](https://dwm.suckless.org/patches/ipc/)** Allows for inter-process communication via a socket. - + - **[fullgaps](https://dwm.suckless.org/patches/fullgaps/)** Gaps between windows in tiled mode. - + - **[actualfullscreen](https://dwm.suckless.org/patches/actualfullscreen/)** Fullscreen windows with Super + Shift + f - + - **spawncenter** Windows spawn in the center of the screen in floating mode. diff --git a/src/config.h b/src/config.h index da0770a..c27f3f3 100644 --- a/src/config.h +++ b/src/config.h @@ -25,7 +25,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[] = "#5f819d"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray1 }, @@ -50,6 +50,8 @@ static const Rule rules[] = { /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, 1, -1 }, { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + { "discord", NULL, NULL, 0, 1, -1 }, + { "Steam", NULL, NULL, 0, 1, -1 }, }; /* layout(s) */ @@ -59,8 +61,8 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi static const Layout layouts[] = { /* symbol arrange function */ - { "><>", NULL }, /* first entry is default */ - { "[]=", tile }, + { "[]=", tile }, /* first entry is default */ + { "><>", NULL }, { "[M]", monocle }, }; @@ -78,8 +80,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ - -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", bg_color, "-nf", text_color, "-sb", col_cyan, "-sf", col_gray4, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", bg_color, "-nf", text_color, "-sb", col_cyan, "-sf", col_gray4, "-p", "Run:", "-i", NULL }; static const char *termcmd[] = { "urxvt", NULL }; @@ -103,8 +104,8 @@ static Key keys[] = { { MODKEY|ShiftMask, XK_Return, zoom, {0} }, { MODKEY, XK_Tab, view, {0} }, { MODKEY|ShiftMask, XK_q, killclient, {0} }, - { MODKEY, XK_t, setlayout, {.v = &layouts[1]} }, - { MODKEY, XK_f, setlayout, {.v = &layouts[0]} }, + { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, + { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, { MODKEY, XK_space, setlayout, {0} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} },