diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-05-26 10:04:45 +0200 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-05-26 10:04:45 +0200 |
commit | cd5198f084186dacb9f90bc2b52654f16f6feefb (patch) | |
tree | c76c9942f52a9e8b2a2d012bcccf99198b9f189a /dwm | |
parent | 15663cf4d0666670ff1dffcac9d56aef87752c3f (diff) |
change settings
Diffstat (limited to 'dwm')
-rwxr-xr-x | dwm/config.h | 2 | ||||
-rw-r--r-- | dwm/drw.o | bin | 11096 -> 11048 bytes | |||
-rwxr-xr-x | dwm/dwm | bin | 0 -> 63264 bytes | |||
-rw-r--r-- | dwm/dwm.o | bin | 0 -> 58464 bytes | |||
-rw-r--r-- | dwm/themes/sunshine.h | 24 | ||||
-rw-r--r-- | dwm/themes/veloren.h | 24 | ||||
-rw-r--r-- | dwm/util.o | bin | 0 -> 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 */ Binary files differBinary files differdiff --git a/dwm/dwm.o b/dwm/dwm.o Binary files differnew file mode 100644 index 0000000..b29b525 --- /dev/null +++ b/dwm/dwm.o 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 Binary files differnew file mode 100644 index 0000000..aa3779b --- /dev/null +++ b/dwm/util.o |