aboutsummaryrefslogtreecommitdiff
path: root/.repos
diff options
context:
space:
mode:
Diffstat (limited to '.repos')
-rw-r--r--.repos/dwm/config.h41
-rw-r--r--.repos/dwm/drw.obin10472 -> 10600 bytes
-rwxr-xr-x.repos/dwm/dwmbin71136 -> 71168 bytes
-rw-r--r--.repos/dwm/dwm.obin60472 -> 60336 bytes
-rw-r--r--.repos/dwm/util.obin2224 -> 2264 bytes
-rw-r--r--.repos/st/config.h44
6 files changed, 49 insertions, 36 deletions
diff --git a/.repos/dwm/config.h b/.repos/dwm/config.h
index f31bb0a..4951d41 100644
--- a/.repos/dwm/config.h
+++ b/.repos/dwm/config.h
@@ -1,21 +1,34 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-static const unsigned int borderpx = 1; /* border pixel of windows */
-static const unsigned int snap = 32; /* snap pixel */
+static const unsigned int borderpx = 2; /* border pixel of windows */
+static const unsigned int snap = 16; /* snap pixel */
static const int showbar = 0; /* 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] = {
- /* fg bg border */
- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
- [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+static const char *fonts[] = { "Iosevka Term:pixelsize=14:antialias=true:autohint=true" };
+static const char dmenufont[] = "Iosevka Term:pixelsize=14:antialias=true:autohint=true";
+
+static const char col_base00[] = "#282c34";
+static const char col_base01[] = "#353b45";
+static const char col_base02[] = "#3e4451";
+static const char col_base03[] = "#545862";
+static const char col_base04[] = "#565c64";
+static const char col_base05[] = "#abb2bf";
+static const char col_base06[] = "#b6bdca";
+static const char col_base07[] = "#c8ccd4";
+static const char col_base08[] = "#e06c75";
+static const char col_base09[] = "#d19a66";
+static const char col_base0A[] = "#e5c07b";
+static const char col_base0B[] = "#98c379";
+static const char col_base0C[] = "#56b6c2";
+static const char col_base0D[] = "#61afef";
+static const char col_base0E[] = "#c678dd";
+static const char col_base0F[] = "#be5046";
+
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { col_base05, col_base00, col_base00 },
+ [SchemeSel] = { col_base05, col_base02, col_base02 },
};
/* scratchpad */
@@ -68,7 +81,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_base00, "-nf", col_base05, "-sb", col_base02, "-sf", col_base05, NULL };
static const char *termcmd[] = { "st", NULL };
static const char *fltermcmd[] = { "st", "-t", "flterm", "-g", "120x34", NULL };
static const char *browsercmd[] = { "qutebrowser", NULL };
diff --git a/.repos/dwm/drw.o b/.repos/dwm/drw.o
index db93e5e..3adc054 100644
--- a/.repos/dwm/drw.o
+++ b/.repos/dwm/drw.o
Binary files differ
diff --git a/.repos/dwm/dwm b/.repos/dwm/dwm
index 4a4a38b..4602f0c 100755
--- a/.repos/dwm/dwm
+++ b/.repos/dwm/dwm
Binary files differ
diff --git a/.repos/dwm/dwm.o b/.repos/dwm/dwm.o
index 20a8dd1..e3bc17f 100644
--- a/.repos/dwm/dwm.o
+++ b/.repos/dwm/dwm.o
Binary files differ
diff --git a/.repos/dwm/util.o b/.repos/dwm/util.o
index 59a0745..2a026a6 100644
--- a/.repos/dwm/util.o
+++ b/.repos/dwm/util.o
Binary files differ
diff --git a/.repos/st/config.h b/.repos/st/config.h
index b4283bd..42f7fae 100644
--- a/.repos/st/config.h
+++ b/.repos/st/config.h
@@ -108,34 +108,34 @@ char *termname = "st-256color";
unsigned int tabspaces = 8;
/* bg opacity */
-float alpha = 0.8;
+float alpha = 1.0;
-/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
- "#000000", // black
- "#d54e53", // red
- "#b9ca4a", // green
- "#e6c547", // yellow
- "#7aa6da", // blue
- "#c397d8", // magenta
- "#70c0ba", // cyan
- "#eaeaea", // white
- "#666666", // bright black
- "#ff3334", // bright red
- "#9ec400", // bright green
- "#e7c547", // bright yellow
- "#7aa6da", // bright blue
- "#b77ee0", // bright magenta
- "#54ced6", // bright cyan
- "#ffffff", // bright white
+ "#282c34", /* base00 */
+ "#e06c75", /* base08 */
+ "#98c379", /* base0B */
+ "#e5c07b", /* base0A */
+ "#61afef", /* base0D */
+ "#c678dd", /* base0E */
+ "#56b6c2", /* base0C */
+ "#abb2bf", /* base05 */
+ "#545862", /* base03 */
+ "#d19a66", /* base09 */
+ "#353b45", /* base01 */
+ "#3e4451", /* base02 */
+ "#565c64", /* base04 */
+ "#b6bdca", /* base06 */
+ "#be5046", /* base0F */
+ "#c8ccd4", /* base07 */
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
- "#ffffff", /* 256 -> cursor */
- "#666666", /* 257 -> rev cursor*/
- "#000000", /* 258 -> bg */
- "#eaeaea", /* 259 -> fg */
+ "#b6bdca", /* 256 -> cursor */
+ "#282c34", /* 257 -> rev cursor*/
+ "#282c34", /* 258 -> bg */
+ "#abb2bf", /* 259 -> fg */
};
+
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor