colors
This commit is contained in:
parent
0ae1d2bfc6
commit
60808bb120
1 changed files with 12 additions and 24 deletions
|
@ -1,18 +1,5 @@
|
|||
Applied patches (in listed order):
|
||||
dwm-warp-6.4.diff
|
||||
dwm-swallow-6.3.diff
|
||||
dwm-sticky-6.4.diff
|
||||
dwm-pertag-20200914-61bb8b2.diff
|
||||
dwm-notitle-20210715-138b405.diff
|
||||
dwm-movestack-20211115-a786211.diff
|
||||
dwm-fullgaps-6.4.diff
|
||||
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 22:14:43.253244719 -0600
|
||||
--- a/config.def.h 2024-12-13 22:36:39.905125333 -0600
|
||||
+++ b/config.def.h 2024-12-13 22:14:51.781313665 -0600
|
||||
@@ -3,6 +3,7 @@
|
||||
/* appearance */
|
||||
|
@ -72,8 +59,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 22:16:28.794098368 -0600
|
||||
@@ -0,0 +1,121 @@
|
||||
+++ b/config.h 2024-12-13 22:34:19.484321591 -0600
|
||||
@@ -0,0 +1,122 @@
|
||||
+/* See LICENSE file for copyright and license details. */
|
||||
+
|
||||
+/* appearance */
|
||||
|
@ -81,7 +68,7 @@ diff '--color=auto' -Nu a/config.h b/config.h
|
|||
+static const unsigned int snap = 1; /* snap pixel */
|
||||
+static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
||||
+static const int showbar = 1; /* 0 means no bar */
|
||||
+static const int topbar = 0; /* 0 means bottom bar */
|
||||
+static const int topbar = 1; /* 0 means bottom bar */
|
||||
+static const char *fonts[] = { "JetBrainsMono:bold:size=10" };
|
||||
+static const char dmenufont[] = "JetBrainsMono:size=10";
|
||||
+static const char col_gray1[] = "#222222";
|
||||
|
@ -90,13 +77,14 @@ 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[] = "#a7c080";
|
||||
+static const char col_dark[] = "#2e383c";
|
||||
+static const char col_black[] = "#000000";
|
||||
+static const char col_norm_fg[] = "#374145";
|
||||
+static const char col_norm_bg[] = "#1e2326";
|
||||
+static const char col_sel_fg[] = "#7fbbb3";
|
||||
+static const char col_sel_bg[] = "#1e2326";
|
||||
+static const char *colors[][3] = {
|
||||
+ /* fg bg border */
|
||||
+ [SchemeNorm] = { col_dark, col_black, col_dark },
|
||||
+ [SchemeSel] = { col_dark, col_light, col_light },
|
||||
+ [SchemeNorm] = { col_norm_fg, col_norm_bg, col_norm_bg },
|
||||
+ [SchemeSel] = { col_sel_fg, col_sel_bg, col_sel_fg },
|
||||
+};
|
||||
+
|
||||
+/* tagging */
|
||||
|
@ -196,7 +184,7 @@ 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 22:14:43.253244719 -0600
|
||||
--- a/config.mk 2024-12-13 22:36:39.905125333 -0600
|
||||
+++ b/config.mk 2024-12-13 22:14:51.781313665 -0600
|
||||
@@ -20,10 +20,11 @@
|
||||
# OpenBSD (uncomment)
|
||||
|
@ -212,7 +200,7 @@ 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 22:14:43.253244719 -0600
|
||||
--- a/dwm.c 2024-12-13 22:36:39.905125333 -0600
|
||||
+++ b/dwm.c 2024-12-13 22:14:51.781313665 -0600
|
||||
@@ -40,6 +40,12 @@
|
||||
#include <X11/extensions/Xinerama.h>
|
||||
|
|
Loading…
Reference in a new issue