From cd5198f084186dacb9f90bc2b52654f16f6feefb Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Sun, 26 May 2024 10:04:45 +0200 Subject: change settings --- dwm/config.h | 2 +- dwm/drw.o | Bin 11096 -> 11048 bytes dwm/dwm | Bin 0 -> 63264 bytes dwm/dwm.o | Bin 0 -> 58464 bytes dwm/themes/sunshine.h | 24 ++++++++++++++++++++++++ dwm/themes/veloren.h | 24 ++++++++++++++++++++++++ dwm/util.o | Bin 0 -> 2224 bytes 7 files changed, 49 insertions(+), 1 deletion(-) create mode 100755 dwm/dwm create mode 100644 dwm/dwm.o create mode 100644 dwm/themes/sunshine.h create mode 100644 dwm/themes/veloren.h create mode 100644 dwm/util.o (limited to 'dwm') 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 Binary files a/dwm/drw.o and b/dwm/drw.o differ diff --git a/dwm/dwm b/dwm/dwm new file mode 100755 index 0000000..8ecfddd Binary files /dev/null and b/dwm/dwm differ diff --git a/dwm/dwm.o b/dwm/dwm.o new file mode 100644 index 0000000..b29b525 Binary files /dev/null and b/dwm/dwm.o 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 Binary files /dev/null and b/dwm/util.o differ -- cgit v1.2.3