mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-22 16:31:26 +00:00
Change dmenu colors
all changed in source you have to build it
This commit is contained in:
parent
ee6a9f0513
commit
4003d811aa
|
@ -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
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &
|
|
|
@ -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 *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||||
static const char *colors[SchemeLast][2] = {
|
static const char *colors[SchemeLast][2] = {
|
||||||
/* fg bg */
|
/* fg bg */
|
||||||
[SchemeNorm] = { "#bbbbbb", "#222222" },
|
[SchemeNorm] = { "#44475a", "#282a36" },
|
||||||
[SchemeSel] = { "#eeeeee", "#005577" },
|
[SchemeSel] = { "#eeeeee", "#005577" },
|
||||||
[SchemeSelHighlight] = { "#ffc978", "#005577" },
|
[SchemeSelHighlight] = { "#ffc978", "#005577" },
|
||||||
[SchemeNormHighlight] = { "#ffc978", "#222222" },
|
[SchemeNormHighlight] = { "#ffc978", "#222222" },
|
||||||
|
|
|
@ -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 *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||||
static const char *colors[SchemeLast][2] = {
|
static const char *colors[SchemeLast][2] = {
|
||||||
/* fg bg */
|
/* fg bg */
|
||||||
[SchemeNorm] = { "#f8f8f2", "#222222" },
|
[SchemeNorm] = { "#f8f8f2", "#282a36" },
|
||||||
[SchemeSel] = { "#f8f8f2", "#44475a" },
|
[SchemeSel] = { "#eeeeee", "#44475a" },
|
||||||
[SchemeSelHighlight] = { "#ffb86c", "#44475a" },
|
[SchemeSelHighlight] = { "#ffc978", "#44475a" },
|
||||||
[SchemeNormHighlight] = { "#ffb86c", "#222222" },
|
[SchemeNormHighlight] = { "#ffc978", "#222222" },
|
||||||
[SchemeOut] = { "#000000", "#00ffff" },
|
[SchemeOut] = { "#000000", "#00ffff" },
|
||||||
};
|
};
|
||||||
/* -l and -g options; controls number of lines and columns in grid if > 0 */
|
/* -l and -g options; controls number of lines and columns in grid if > 0 */
|
||||||
|
|
BIN
dmenu-4.9/dmenu
BIN
dmenu-4.9/dmenu
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue