Compare commits

...

3 Commits

Author SHA1 Message Date
8c3feb14bc Update gaps 2025-01-07 06:59:58 -05:00
6eabf8447a Update to zenwritten and add dwm autostart 2024-11-11 19:24:43 -05:00
576ede5261 Make dwm zenbones colors 2024-11-10 21:08:54 -05:00
2 changed files with 2103 additions and 2203 deletions

View File

@ -3,8 +3,8 @@
/* appearance */ /* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */ static const unsigned int snap = 32; /* snap pixel */
static const unsigned int gappih = 10; /* horiz inner gap between windows */ static const unsigned int gappih = 15; /* horiz inner gap between windows */
static const unsigned int gappiv = 10; /* vert inner gap between windows */ static const unsigned int gappiv = 15; /* vert inner gap between windows */
static const unsigned int gappoh = static const unsigned int gappoh =
10; /* horiz outer gap between windows and screen edge */ 10; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = static const unsigned int gappov =
@ -20,14 +20,14 @@ static const char *fonts[] = {
"FiraCode Nerd Font:size=11:antialias=true:autohint=true"}; "FiraCode Nerd Font:size=11:antialias=true:autohint=true"};
static const char dmenufont[] = static const char dmenufont[] =
"SauceCodePro Nerd Font:size=10:antialias=true:autohint=true"; "SauceCodePro Nerd Font:size=10:antialias=true:autohint=true";
static const char col_gray1[] = "#282828"; static const char col_gray1[] = "#191919";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#3d3839";
static const char col_gray3[] = "#ebdbb2"; static const char col_gray3[] = "#B4bdc3";
static const char col_gray4[] = "#928374"; static const char col_gray4[] = "#8e8e8e";
static const char col_cyan[] = "#458588"; static const char col_cyan[] = "#6099C0";
static const char col_green[] = "#98971a"; static const char col_green[] = "#819b69";
static const char col_red[] = "#fb4934"; static const char col_red[] = "#de6e76";
static const char col_yellow[] = "#fabd2f"; static const char col_yellow[] = "#d68c67";
static const char col_teal[] = "#8ec07c"; static const char col_teal[] = "#8ec07c";
static const char col_purple[] = "#b16286"; static const char col_purple[] = "#b16286";
static const unsigned int baralpha = 175; static const unsigned int baralpha = 175;
@ -36,7 +36,7 @@ static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = {col_gray3, col_gray1, "#000000"}, [SchemeNorm] = {col_gray3, col_gray1, "#000000"},
[SchemeSel] = {col_gray3, col_cyan, col_cyan}, [SchemeSel] = {col_gray3, col_cyan, col_cyan},
[SchemeStatus] = {col_gray4, col_gray1, "#000000"}, [SchemeStatus] = {col_gray3, col_gray1, "#000000"},
[SchemeTagsSel] = {col_gray3, col_gray1, col_gray1}, [SchemeTagsSel] = {col_gray3, col_gray1, col_gray1},
// Tagbar left unselected {text,background,not used but cannot be empty} // Tagbar left unselected {text,background,not used but cannot be empty}
[SchemeTagsNorm] = {col_gray4, col_gray1, col_gray1}, [SchemeTagsNorm] = {col_gray4, col_gray1, col_gray1},
@ -77,7 +77,6 @@ static const Rule rules[] = {
{"Sxiv", NULL, NULL, 0, 1, 0, 1, -1}, {"Sxiv", NULL, NULL, 0, 1, 0, 1, -1},
{"matplotlib", NULL, NULL, 0, 1, 0, 1, -1}, {"matplotlib", NULL, NULL, 0, 1, 0, 1, -1},
{"Matplotlib", NULL, NULL, 0, 1, 0, 1, -1}, {"Matplotlib", NULL, NULL, 0, 1, 0, 1, -1},
{"inscryption.exe", NULL, NULL, 0, 1, 0, 1, -1},
{NULL, NULL, "Figure 1", 0, 1, 0, 1, -1}, {NULL, NULL, "Figure 1", 0, 1, 0, 1, -1},
{NULL, NULL, "Figure 2", 0, 1, 0, 1, -1}, {NULL, NULL, "Figure 2", 0, 1, 0, 1, -1},
{NULL, NULL, "Figure 3", 0, 1, 0, 1, -1}, {NULL, NULL, "Figure 3", 0, 1, 0, 1, -1},

4283
dwm.c

File diff suppressed because it is too large Load Diff