Upload files to "dwm"

This commit is contained in:
Out Of Ideas 2023-10-30 23:36:09 +00:00
parent 727f6ebc9b
commit c6e47d41f4
1 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
From 4465219a7a63a4016e2f08cc7dd513d0bdbe4be8 Mon Sep 17 00:00:00 2001
From: oink <oink@disroot.org>
Date: Mon, 30 Oct 2023 18:30:42 -0500
Subject: [PATCH] Daybreak colorscheme
---
config.def.h | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/config.def.h b/config.def.h
index 9efa774..f2e387c 100644
--- a/config.def.h
+++ b/config.def.h
@@ -7,15 +7,14 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
-static const char col_gray1[] = "#222222";
-static const char col_gray2[] = "#444444";
-static const char col_gray3[] = "#bbbbbb";
-static const char col_gray4[] = "#eeeeee";
-static const char col_cyan[] = "#005577";
-static const char *colors[][3] = {
+static const char col_black_alt[] = "#270e05";
+static const char col_light_blue_alt[] = "#97aee4";
+static const char col_white[] = "#fef9cd";
+static const char col_white_alt[] = "#ffffff";
+static const char *colors[][3] = {
/* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+ [SchemeNorm] = { col_white, col_black_alt, col_black_alt },
+ [SchemeSel] = { col_white, col_light_blue_alt, col_white_alt },
};
/* tagging */
@@ -57,7 +56,7 @@ static const Layout layouts[] = {
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
-static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_black_alt, "-nf", col_light_blue_alt, "-sb", col_white_alt, "-sf", col_white, NULL };
static const char *termcmd[] = { "st", NULL };
static const Key keys[] = {