1
0
mirror of https://github.com/tiyn/dwm.git synced 2026-01-02 07:29:47 +01:00

removing alpha patch

This commit is contained in:
TiynGER
2020-05-29 14:12:14 +02:00
parent fbd7aa1468
commit 116548d4a1
2 changed files with 1 additions and 9 deletions

View File

@@ -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 },
};