From d94b4ae3d2d7a9038f7fa4ed23496eff5d1b47a8 Mon Sep 17 00:00:00 2001 From: Marcel Screm Date: Mon, 5 Jan 2026 14:05:11 +0100 Subject: added nord theme and font --- LICENSE | 0 Makefile | 0 README | 0 arg.h | 0 config.def.h | 0 config.h | 21 +++++++++++++++++++++ config.mk | 0 dmenu | Bin 0 -> 43064 bytes dmenu.1 | 0 dmenu.c | 0 dmenu.o | Bin 0 -> 32056 bytes drw.c | 0 drw.h | 0 drw.o | Bin 0 -> 11720 bytes stest | Bin 0 -> 16432 bytes stest.1 | 0 stest.c | 0 stest.o | Bin 0 -> 5240 bytes util.c | 0 util.h | 0 util.o | Bin 0 -> 2400 bytes 21 files changed, 21 insertions(+) mode change 100644 => 100755 LICENSE mode change 100644 => 100755 Makefile mode change 100644 => 100755 README mode change 100644 => 100755 arg.h mode change 100644 => 100755 config.def.h create mode 100755 config.h mode change 100644 => 100755 config.mk create mode 100755 dmenu mode change 100644 => 100755 dmenu.1 mode change 100644 => 100755 dmenu.c create mode 100644 dmenu.o mode change 100644 => 100755 drw.c mode change 100644 => 100755 drw.h create mode 100644 drw.o create mode 100755 stest mode change 100644 => 100755 stest.1 mode change 100644 => 100755 stest.c create mode 100644 stest.o mode change 100644 => 100755 util.c mode change 100644 => 100755 util.h create mode 100644 util.o diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 diff --git a/README b/README old mode 100644 new mode 100755 diff --git a/arg.h b/arg.h old mode 100644 new mode 100755 diff --git a/config.def.h b/config.def.h old mode 100644 new mode 100755 diff --git a/config.h b/config.h new file mode 100755 index 0000000..181e593 --- /dev/null +++ b/config.h @@ -0,0 +1,21 @@ +/* See LICENSE file for copyright and license details. */ +/* Default settings; can be overriden by command line. */ + +static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +/* -fn option overrides fonts[0]; default X11 font or font set */ +static const char *fonts[] = { "FiraCode Nerd Font:size=14" }; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#D8DEE9", "#2E3440" }, + [SchemeSel] = { "#ECEFF4", "#616E88" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; +/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ +static unsigned int lines = 0; + +/* + * Characters not considered part of a word while deleting words + * for example: " /?\"&[]" + */ +static const char worddelimiters[] = " "; diff --git a/config.mk b/config.mk old mode 100644 new mode 100755 diff --git a/dmenu b/dmenu new file mode 100755 index 0000000..9578bf1 Binary files /dev/null and b/dmenu differ diff --git a/dmenu.1 b/dmenu.1 old mode 100644 new mode 100755 diff --git a/dmenu.c b/dmenu.c old mode 100644 new mode 100755 diff --git a/dmenu.o b/dmenu.o new file mode 100644 index 0000000..2e7684a Binary files /dev/null and b/dmenu.o differ diff --git a/drw.c b/drw.c old mode 100644 new mode 100755 diff --git a/drw.h b/drw.h old mode 100644 new mode 100755 diff --git a/drw.o b/drw.o new file mode 100644 index 0000000..833480a Binary files /dev/null and b/drw.o differ diff --git a/stest b/stest new file mode 100755 index 0000000..213e373 Binary files /dev/null and b/stest differ diff --git a/stest.1 b/stest.1 old mode 100644 new mode 100755 diff --git a/stest.c b/stest.c old mode 100644 new mode 100755 diff --git a/stest.o b/stest.o new file mode 100644 index 0000000..889b4f5 Binary files /dev/null and b/stest.o differ diff --git a/util.c b/util.c old mode 100644 new mode 100755 diff --git a/util.h b/util.h old mode 100644 new mode 100755 diff --git a/util.o b/util.o new file mode 100644 index 0000000..daaf0da Binary files /dev/null and b/util.o differ -- cgit v1.2.3