colors
This commit is contained in:
parent
65d54be282
commit
0ae1d2bfc6
1 changed files with 12 additions and 13 deletions
|
@ -10,9 +10,10 @@ dwm-attachbottom-6.3.diff
|
|||
dwm-alwayscenter-20200625-f04cac6.diff
|
||||
dwm-windowmap-20221026.diff
|
||||
dwm-noborderselflickerfix-2022042627-d93ff48803f0.diff
|
||||
---
|
||||
diff '--color=auto' -Nu a/config.def.h b/config.def.h
|
||||
--- a/config.def.h 2024-12-13 14:37:06.705932001 -0600
|
||||
+++ b/config.def.h 2024-12-13 13:36:45.519666924 -0600
|
||||
--- a/config.def.h 2024-12-13 22:14:43.253244719 -0600
|
||||
+++ b/config.def.h 2024-12-13 22:14:51.781313665 -0600
|
||||
@@ -3,6 +3,7 @@
|
||||
/* appearance */
|
||||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||
|
@ -71,8 +72,8 @@ diff '--color=auto' -Nu a/config.def.h b/config.def.h
|
|||
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
|
||||
diff '--color=auto' -Nu a/config.h b/config.h
|
||||
--- a/config.h 1969-12-31 18:00:00.000000000 -0600
|
||||
+++ b/config.h 2024-12-13 14:36:42.009725573 -0600
|
||||
@@ -0,0 +1,123 @@
|
||||
+++ b/config.h 2024-12-13 22:16:28.794098368 -0600
|
||||
@@ -0,0 +1,121 @@
|
||||
+/* See LICENSE file for copyright and license details. */
|
||||
+
|
||||
+/* appearance */
|
||||
|
@ -89,13 +90,11 @@ diff '--color=auto' -Nu a/config.h b/config.h
|
|||
+static const char col_gray4[] = "#eeeeee";
|
||||
+static const char col_cyan[] = "#005577";
|
||||
+/*Custom colors*/
|
||||
+static const char col_light[] = "#7fbbb3";
|
||||
+static const char col_dark[] = "#1d2021";
|
||||
+static const char col_light[] = "#a7c080";
|
||||
+static const char col_dark[] = "#2e383c";
|
||||
+static const char col_black[] = "#000000";
|
||||
+static const char *colors[][3] = {
|
||||
+ /* fg bg border */
|
||||
+ /*[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },*/
|
||||
+ /*[SchemeSel] = { col_gray4, col_cyan, col_cyan },*/
|
||||
+ [SchemeNorm] = { col_dark, col_black, col_dark },
|
||||
+ [SchemeSel] = { col_dark, col_light, col_light },
|
||||
+};
|
||||
|
@ -197,8 +196,8 @@ diff '--color=auto' -Nu a/config.h b/config.h
|
|||
+};
|
||||
+
|
||||
diff '--color=auto' -Nu a/config.mk b/config.mk
|
||||
--- a/config.mk 2024-12-13 14:37:06.705932001 -0600
|
||||
+++ b/config.mk 2024-12-13 13:36:45.519666924 -0600
|
||||
--- a/config.mk 2024-12-13 22:14:43.253244719 -0600
|
||||
+++ b/config.mk 2024-12-13 22:14:51.781313665 -0600
|
||||
@@ -20,10 +20,11 @@
|
||||
# OpenBSD (uncomment)
|
||||
#FREETYPEINC = ${X11INC}/freetype2
|
||||
|
@ -213,8 +212,8 @@ diff '--color=auto' -Nu a/config.mk b/config.mk
|
|||
# flags
|
||||
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
|
||||
diff '--color=auto' -Nu a/dwm.c b/dwm.c
|
||||
--- a/dwm.c 2024-12-13 14:37:06.709932032 -0600
|
||||
+++ b/dwm.c 2024-12-13 13:40:36.901568536 -0600
|
||||
--- a/dwm.c 2024-12-13 22:14:43.253244719 -0600
|
||||
+++ b/dwm.c 2024-12-13 22:14:51.781313665 -0600
|
||||
@@ -40,6 +40,12 @@
|
||||
#include <X11/extensions/Xinerama.h>
|
||||
#endif /* XINERAMA */
|
||||
|
@ -1117,7 +1116,7 @@ diff '--color=auto' -Nu a/dwm.c b/dwm.c
|
|||
Common subdirectories: a/.git and b/.git
|
||||
diff '--color=auto' -Nu a/movestack.c b/movestack.c
|
||||
--- a/movestack.c 1969-12-31 18:00:00.000000000 -0600
|
||||
+++ b/movestack.c 2024-12-13 13:36:45.519666924 -0600
|
||||
+++ b/movestack.c 2024-12-13 22:14:51.781313665 -0600
|
||||
@@ -0,0 +1,48 @@
|
||||
+void
|
||||
+movestack(const Arg *arg) {
|
||||
|
|
Loading…
Reference in a new issue