diff --git a/dmenu-5.1/config.def.h b/dmenu-5.1/config.def.h index e8b6493..725d230 100644 --- a/dmenu-5.1/config.def.h +++ b/dmenu-5.1/config.def.h @@ -6,7 +6,7 @@ static int centered = 1; /* -c option; centers dmenu on scree static int min_width = 500; /* minimum width when centered */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "Roboto:size=13" + "Roboto:size=15" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { diff --git a/dmenu-5.1/config.h b/dmenu-5.1/config.h new file mode 100644 index 0000000..725d230 --- /dev/null +++ b/dmenu-5.1/config.h @@ -0,0 +1,31 @@ +/* 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 */ +static int centered = 1; /* -c option; centers dmenu on screen */ +static int min_width = 500; /* minimum width when centered */ +/* -fn option overrides fonts[0]; default X11 font or font set */ +static const char *fonts[] = { + "Roboto:size=15" +}; +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", "#8800aa" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; +/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ +static unsigned int lines = 10; +/* -h option; minimum height of a menu line */ +static unsigned int lineheight = 0; +static unsigned int min_lineheight = 8; + +/* + * Characters not considered part of a word while deleting words + * for example: " /?\"&[]" + */ +static const char worddelimiters[] = " "; + +/* Size of the window border */ +static const unsigned int border_width = 4; diff --git a/dmenu-5.1/dmenu b/dmenu-5.1/dmenu index 3a45cd7..ef4f5e0 100755 Binary files a/dmenu-5.1/dmenu and b/dmenu-5.1/dmenu differ diff --git a/dmenu-5.1/dmenu.o b/dmenu-5.1/dmenu.o index e995b6b..73811a3 100644 Binary files a/dmenu-5.1/dmenu.o and b/dmenu-5.1/dmenu.o differ diff --git a/st-0.8.5/config.def.h b/st-0.8.5/config.def.h index a82fb39..94cb956 100644 --- a/st-0.8.5/config.def.h +++ b/st-0.8.5/config.def.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "JetBrains Mono NL:style=Regular:pixelsize=15:antialias=true:autohint=true"; +static char *font = "Iosevka:style=Regular:pixelsize=15:antialias=true:autohint=true"; static int borderpx = 2; /* diff --git a/st-0.8.5/config.h b/st-0.8.5/config.h index a82fb39..94cb956 100644 --- a/st-0.8.5/config.h +++ b/st-0.8.5/config.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "JetBrains Mono NL:style=Regular:pixelsize=15:antialias=true:autohint=true"; +static char *font = "Iosevka:style=Regular:pixelsize=15:antialias=true:autohint=true"; static int borderpx = 2; /* diff --git a/st-0.8.5/st b/st-0.8.5/st index 3137fa6..a4bc8bb 100755 Binary files a/st-0.8.5/st and b/st-0.8.5/st differ diff --git a/st-0.8.5/x.o b/st-0.8.5/x.o index 36380ed..6e6c897 100644 Binary files a/st-0.8.5/x.o and b/st-0.8.5/x.o differ