removing alpha patch

config
TiynGER 5 years ago
parent fbd7aa1468
commit 116548d4a1

@ -6,12 +6,12 @@ It is supposed to work in the environment after the larbs-base-installation.
## Patches
The list below shows the currently applied patches to the master branch.
- dwm-actualfullscreen-20191112-cb3f58a.diff (enables true fullscreen)
- dwm-alpha-6.2.diff (adds transparency)
- dwm-center-6.1.diff (adds ability to center floating windows at launch)
- dwm-deck-6.0.diff (adds deck layout)
- dwm-noborder-6.2.diff (removes border if there is only one window)
- dwm-pertag-20170513-ceac8c9.diff (allows having a layout/mwfact/barpos/nmaster per tag)
- dwm-statuscmd-6.2.diff (enables dwmblocks compatibility)
- dwm-status2d-6.2.diff (enables drawing in statusbar)
## Hotkeys
There are various shortcuts and hotkeys used in this version. Included in my build are the following.

@ -12,8 +12,6 @@ static const char *fonts[] = { "monospace:size=10", "Noto Color Emoji:s
static const char dmenufont[] = "monospace:size=10";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const unsigned int baralpha = 0xff;
static const unsigned int borderalpha = 0xff;
static const char col_gray3[] = "#f7f7f7";
static const char col_gray4[] = "#000000";
static const char col_cyan[] = "#a62238";
@ -22,11 +20,6 @@ static const char *colors[][3] = {
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_gray3 },
};
static const unsigned int alphas[][3] = {
/* fg bg border */
[SchemeNorm] = { OPAQUE, baralpha, borderalpha },
[SchemeSel] = { OPAQUE, baralpha, borderalpha },
};
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
@ -36,7 +29,6 @@ static const Rule rules[] = {
* WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isCentered isfloating monitor */
{ NULL, "de.uol.swp.client.ClientApp", NULL, 0, 0, 1, -1 },
};

Loading…
Cancel
Save