summaryrefslogtreecommitdiff
path: root/dwm
diff options
context:
space:
mode:
authorniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2024-05-26 10:04:45 +0200
committerniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2024-05-26 10:04:45 +0200
commitcd5198f084186dacb9f90bc2b52654f16f6feefb (patch)
treec76c9942f52a9e8b2a2d012bcccf99198b9f189a /dwm
parent15663cf4d0666670ff1dffcac9d56aef87752c3f (diff)
change settings
Diffstat (limited to 'dwm')
-rwxr-xr-xdwm/config.h2
-rw-r--r--dwm/drw.obin11096 -> 11048 bytes
-rwxr-xr-xdwm/dwmbin0 -> 63264 bytes
-rw-r--r--dwm/dwm.obin0 -> 58464 bytes
-rw-r--r--dwm/themes/sunshine.h24
-rw-r--r--dwm/themes/veloren.h24
-rw-r--r--dwm/util.obin0 -> 2224 bytes
7 files changed, 49 insertions, 1 deletions
diff --git a/dwm/config.h b/dwm/config.h
index c963ab8..39d0368 100755
--- a/dwm/config.h
+++ b/dwm/config.h
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "themes/connect.h"
+#include "themes/veloren.h"
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
diff --git a/dwm/drw.o b/dwm/drw.o
index 3721eeb..b157f9e 100644
--- a/dwm/drw.o
+++ b/dwm/drw.o
Binary files differ
diff --git a/dwm/dwm b/dwm/dwm
new file mode 100755
index 0000000..8ecfddd
--- /dev/null
+++ b/dwm/dwm
Binary files differ
diff --git a/dwm/dwm.o b/dwm/dwm.o
new file mode 100644
index 0000000..b29b525
--- /dev/null
+++ b/dwm/dwm.o
Binary files differ
diff --git a/dwm/themes/sunshine.h b/dwm/themes/sunshine.h
new file mode 100644
index 0000000..22b4bcc
--- /dev/null
+++ b/dwm/themes/sunshine.h
@@ -0,0 +1,24 @@
+static const char norm_fg[] = "#dcbdbd";
+static const char norm_bg[] = "#000000";
+static const char norm_border[] = "#9a8484";
+
+static const char sel_fg[] = "#dcbdbd";
+static const char sel_bg[] = "#C16A7F";
+static const char sel_border[] = "#dcbdbd";
+
+static const char urg_fg[] = "#dcbdbd";
+static const char urg_bg[] = "#B76779";
+static const char urg_border[] = "#B76779";
+
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins
+ [SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win
+// [SchemeUrg] = { urg_fg, urg_bg, urg_border },
+};
+
+static const char col_gray1[] = "#000000";
+static const char col_gray2[] = "#9a8484";
+static const char col_gray3[] = "#dcbdbd";
+static const char col_gray4[] = "#dcbdbd";
+static const char col_cyan[] = "#C16A7F";
diff --git a/dwm/themes/veloren.h b/dwm/themes/veloren.h
new file mode 100644
index 0000000..4b096e8
--- /dev/null
+++ b/dwm/themes/veloren.h
@@ -0,0 +1,24 @@
+static const char norm_fg[] = "#fff";
+static const char norm_bg[] = "#000000";
+static const char norm_border[] = "#862";
+
+static const char sel_fg[] = "#fff";
+static const char sel_bg[] = "#652";
+static const char sel_border[] = "#862";
+
+static const char urg_fg[] = "#dcbdbd";
+static const char urg_bg[] = "#B76779";
+static const char urg_border[] = "#B76779";
+
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins
+ [SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win
+// [SchemeUrg] = { urg_fg, urg_bg, urg_border },
+};
+
+static const char col_gray1[] = "#000000";
+static const char col_gray2[] = "#9a8484";
+static const char col_gray3[] = "#dcbdbd";
+static const char col_gray4[] = "#dcbdbd";
+static const char col_cyan[] = "#C16A7F";
diff --git a/dwm/util.o b/dwm/util.o
new file mode 100644
index 0000000..aa3779b
--- /dev/null
+++ b/dwm/util.o
Binary files differ