mirror of
https://github.com/eRgo35/dwm.git
synced 2026-02-04 11:36:11 +01:00
Compare commits
4 Commits
e965863d95
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| f02c5dbc0b | |||
| ab9f2e41a5 | |||
| 7b365e95a7 | |||
| d400b7b0e9 |
25
config.def.h
25
config.def.h
@@ -70,7 +70,8 @@ static const int topbar = 1; /* 0 means bottom bar */
|
|||||||
/* Display modes of the tab bar: never shown, always shown, shown only in */
|
/* Display modes of the tab bar: never shown, always shown, shown only in */
|
||||||
/* monocle mode in the presence of several windows. */
|
/* monocle mode in the presence of several windows. */
|
||||||
/* Modes after showtab_nmodes are disabled. */
|
/* Modes after showtab_nmodes are disabled. */
|
||||||
enum showtab_modes {
|
enum showtab_modes
|
||||||
|
{
|
||||||
showtab_never,
|
showtab_never,
|
||||||
showtab_auto,
|
showtab_auto,
|
||||||
showtab_nmodes,
|
showtab_nmodes,
|
||||||
@@ -382,10 +383,14 @@ static const char title_bg_dark[] = "#303030";
|
|||||||
static const char title_bg_light[] = "#fdfdfd";
|
static const char title_bg_light[] = "#fdfdfd";
|
||||||
static const int color_ptrs[][ColCount] = {
|
static const int color_ptrs[][ColCount] = {
|
||||||
/* fg bg border float */
|
/* fg bg border float */
|
||||||
[SchemeNorm] = {-1, -1, 5, 12}, [SchemeSel] = {-1, -1, 11, 13},
|
[SchemeNorm] = {-1, -1, 5, 12},
|
||||||
[SchemeTitleNorm] = {6, -1, -1, -1}, [SchemeTitleSel] = {6, -1, -1, -1},
|
[SchemeSel] = {-1, -1, 11, 13},
|
||||||
[SchemeTagsNorm] = {2, 0, 0, -1}, [SchemeTagsSel] = {6, 5, 5, -1},
|
[SchemeTitleNorm] = {6, -1, -1, -1},
|
||||||
[SchemeHidNorm] = {5, 0, 0, -1}, [SchemeHidSel] = {6, -1, -1, -1},
|
[SchemeTitleSel] = {6, -1, -1, -1},
|
||||||
|
[SchemeTagsNorm] = {2, 0, 0, -1},
|
||||||
|
[SchemeTagsSel] = {6, 5, 5, -1},
|
||||||
|
[SchemeHidNorm] = {5, 0, 0, -1},
|
||||||
|
[SchemeHidSel] = {6, -1, -1, -1},
|
||||||
[SchemeUrg] = {7, 9, 9, 15},
|
[SchemeUrg] = {7, 9, 9, 15},
|
||||||
};
|
};
|
||||||
#endif // BAR_VTCOLORS_PATCH
|
#endif // BAR_VTCOLORS_PATCH
|
||||||
@@ -906,10 +911,6 @@ static const Layout layouts[] = {
|
|||||||
/* symbol arrange function */
|
/* symbol arrange function */
|
||||||
#if TILE_LAYOUT
|
#if TILE_LAYOUT
|
||||||
{"[]=", tile}, /* first entry is default */
|
{"[]=", tile}, /* first entry is default */
|
||||||
#endif
|
|
||||||
{"><>", NULL}, /* no layout function means floating behavior */
|
|
||||||
#if MONOCLE_LAYOUT
|
|
||||||
{"[M]", monocle},
|
|
||||||
#endif
|
#endif
|
||||||
#if BSTACK_LAYOUT
|
#if BSTACK_LAYOUT
|
||||||
{"TTT", bstack},
|
{"TTT", bstack},
|
||||||
@@ -947,6 +948,10 @@ static const Layout layouts[] = {
|
|||||||
#if NROWGRID_LAYOUT
|
#if NROWGRID_LAYOUT
|
||||||
{"###", nrowgrid},
|
{"###", nrowgrid},
|
||||||
#endif
|
#endif
|
||||||
|
#if MONOCLE_LAYOUT
|
||||||
|
{"[M]", monocle},
|
||||||
|
#endif
|
||||||
|
{"><>", NULL}, /* no layout function means floating behavior */
|
||||||
};
|
};
|
||||||
#endif // FLEXTILE_DELUXE_LAYOUT
|
#endif // FLEXTILE_DELUXE_LAYOUT
|
||||||
|
|
||||||
@@ -1689,6 +1694,8 @@ static const Key keys[] = {
|
|||||||
#if CYCLELAYOUTS_PATCH
|
#if CYCLELAYOUTS_PATCH
|
||||||
{MODKEY | ControlMask, XK_comma, cyclelayout, {.i = -1}},
|
{MODKEY | ControlMask, XK_comma, cyclelayout, {.i = -1}},
|
||||||
{MODKEY | ControlMask, XK_period, cyclelayout, {.i = +1}},
|
{MODKEY | ControlMask, XK_period, cyclelayout, {.i = +1}},
|
||||||
|
{MODKEY, XK_grave, cyclelayout, {.i = +1}},
|
||||||
|
{MODKEY | ShiftMask, XK_grave, cyclelayout, {.i = -1}},
|
||||||
#endif // CYCLELAYOUTS_PATCH
|
#endif // CYCLELAYOUTS_PATCH
|
||||||
#if MPDCONTROL_PATCH
|
#if MPDCONTROL_PATCH
|
||||||
{MODKEY, XK_F1, mpdchange, {.i = -1}},
|
{MODKEY, XK_F1, mpdchange, {.i = -1}},
|
||||||
|
|||||||
0
patch/dwmc
Executable file → Normal file
0
patch/dwmc
Executable file → Normal file
0
patch/layoutmenu.sh
Executable file → Normal file
0
patch/layoutmenu.sh
Executable file → Normal file
977
patches.def.h
977
patches.def.h
File diff suppressed because it is too large
Load Diff
0
rebuild.sh
Executable file → Normal file
0
rebuild.sh
Executable file → Normal file
Reference in New Issue
Block a user