diff --git a/dmenu/config.h b/dmenu/config.h index 6353d8f..91d480e 100644 --- a/dmenu/config.h +++ b/dmenu/config.h @@ -1,19 +1,19 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -static int topbar = 0; /* -b option; if 0, dmenu appears at bottom */ +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 int user_bh = 0; /* add an defined amount of pixels to the bar height */ static const char *fonts[] = { - "monospace:size=10" + "Departure Mono:size=13" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#005577" }, - [SchemeOut] = { "#000000", "#00ffff" }, + [SchemeNorm] = { "#cccccc", "#000000" }, // normal: grey text on black + [SchemeSel] = { "#000000", "#ffffff" }, // selected: black text on white + [SchemeOut] = { "#000000", "#00ffff" }, // optional: match previous Out }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0; diff --git a/dmenu/dmenu b/dmenu/dmenu index 3caefec..705cb23 100755 Binary files a/dmenu/dmenu and b/dmenu/dmenu differ diff --git a/dmenu/dmenu.o b/dmenu/dmenu.o index 97aec27..94cc565 100644 Binary files a/dmenu/dmenu.o and b/dmenu/dmenu.o differ diff --git a/dwm/config.h b/dwm/config.h index fc55e23..030f4a7 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -18,8 +18,8 @@ static const int statusmon = 'A'; static int tagindicatortype = INDICATOR_NONE; static int tiledindicatortype = INDICATOR_NONE; static int floatindicatortype = INDICATOR_NONE; -static const char *fonts[] = { "Terminus:size=15" }; -static const char dmenufont[] = "Terminus:size=15"; +static const char *fonts[] = { "monospace:size=15" }; +static const char dmenufont[] = "monospace:size=15"; static char c000000[] = "#000000"; diff --git a/dwm/drw.o b/dwm/drw.o index 6c76421..b500184 100644 Binary files a/dwm/drw.o and b/dwm/drw.o differ diff --git a/dwm/dwm b/dwm/dwm index dd8012d..816b955 100755 Binary files a/dwm/dwm and b/dwm/dwm differ diff --git a/dwm/dwm.o b/dwm/dwm.o index 3e16657..3447b23 100644 Binary files a/dwm/dwm.o and b/dwm/dwm.o differ diff --git a/dwm/util.o b/dwm/util.o index e1215df..c40fa42 100644 Binary files a/dwm/util.o and b/dwm/util.o differ diff --git a/local/bin/ldd b/local/bin/ldd deleted file mode 100755 index d76dded..0000000 --- a/local/bin/ldd +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/zsh -echo "musl libc (x86_64)" -echo "Version 1.2.5" -echo "Dynamic Program Loader" -echo "Usage: ldd [options [--] pathname]" diff --git a/local/bin/stacki3 b/local/bin/stacki3 new file mode 100755 index 0000000..ad65f02 --- /dev/null +++ b/local/bin/stacki3 @@ -0,0 +1,8 @@ +#!/usr/bin/python3.13 +# -*- coding: utf-8 -*- +import re +import sys +if __name__ == '__main__': + from stacki3 import main + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/st/config.h b/st/config.h index 89b6527..9be97e0 100644 --- a/st/config.h +++ b/st/config.h @@ -1,4 +1,4 @@ -static char *font = "Terminus:size=20:antialias=true:autohint=true"; +static char *font = "monospace:size=20:antialias=true:autohint=true"; static int borderpx = 2; static char *shell = "/bin/sh"; diff --git a/st/hb.o b/st/hb.o index 9b215c4..34d5bbe 100644 Binary files a/st/hb.o and b/st/hb.o differ diff --git a/st/st b/st/st index f1cc44d..e713a18 100755 Binary files a/st/st and b/st/st differ diff --git a/st/st.o b/st/st.o index 65533a1..53e6ffd 100644 Binary files a/st/st.o and b/st/st.o differ diff --git a/st/x.o b/st/x.o index 09bab45..d1f856d 100644 Binary files a/st/x.o and b/st/x.o differ