Change dmenu colors

all changed in source you have to build it
This commit is contained in:
horhik 2020-09-02 22:09:04 +03:00
parent ee6a9f0513
commit 4003d811aa
7 changed files with 5 additions and 20 deletions

BIN
bin/dmenu

Binary file not shown.

View File

@ -1,13 +0,0 @@
#!/bin/sh
cachedir="${XDG_CACHE_HOME:-"$HOME/.cache"}"
cache="$cachedir/dmenu_run"
[ ! -e "$cachedir" ] && mkdir -p "$cachedir"
IFS=:
if stest -dqr -n "$cache" $PATH; then
stest -flx $PATH | sort -u | tee "$cache"
else
cat "$cache"
fi

View File

@ -1,2 +0,0 @@
#!/bin/sh
dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &

View File

@ -11,7 +11,7 @@ static const char *fonts[] = {
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" },
[SchemeNorm] = { "#44475a", "#282a36" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeSelHighlight] = { "#ffc978", "#005577" },
[SchemeNormHighlight] = { "#ffc978", "#222222" },

View File

@ -11,10 +11,10 @@ static const char *fonts[] = {
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#f8f8f2", "#222222" },
[SchemeSel] = { "#f8f8f2", "#44475a" },
[SchemeSelHighlight] = { "#ffb86c", "#44475a" },
[SchemeNormHighlight] = { "#ffb86c", "#222222" },
[SchemeNorm] = { "#f8f8f2", "#282a36" },
[SchemeSel] = { "#eeeeee", "#44475a" },
[SchemeSelHighlight] = { "#ffc978", "#44475a" },
[SchemeNormHighlight] = { "#ffc978", "#222222" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l and -g options; controls number of lines and columns in grid if > 0 */

Binary file not shown.

Binary file not shown.