diff --git a/dmenu/config.def.h b/dmenu/config.def.h index 1edb647..cc7d12a 100644 --- a/dmenu/config.def.h +++ b/dmenu/config.def.h @@ -1,16 +1,16 @@ /* 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 topbar = 0; /* -b option; if 0, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "monospace:size=10" + "monospace:size=12" }; 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" }, + [SchemeNorm] = { "#505250", "#A0E418" }, + [SchemeSel] = { "#505250", "#7FB414" }, [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ diff --git a/dmenu/config.h b/dmenu/config.h index 4cec2bb..cc7d12a 100644 --- a/dmenu/config.h +++ b/dmenu/config.h @@ -1,7 +1,7 @@ /* 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 topbar = 0; /* -b option; if 0, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { "monospace:size=12" diff --git a/dwm/config.def.h b/dwm/config.def.h index 900f75d..d019dc9 100644 --- a/dwm/config.def.h +++ b/dwm/config.def.h @@ -5,13 +5,13 @@ static const unsigned int borderpx = 4; /* border pixel of windows */ static const unsigned int gappx = 10; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ -static const int topbar = 1; /* 0 means bottom bar */ +static const int topbar = 0; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=12" }; static const char dmenufont[] = "monospace:size=12"; static const char col_gray1[] = "#A0E418"; static const char col_gray2[] = "#E5F9BD"; static const char col_gray3[] = "#505250"; -static const char col_gray4[] = "#505250"; +static const char col_gray4[] = "#E5F9BD"; static const char col_cyan[] = "#7FB414"; static const char *colors[][3] = { /* fg bg border */ diff --git a/dwm/config.h b/dwm/config.h index 370cf3c..d019dc9 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -5,7 +5,7 @@ static const unsigned int borderpx = 4; /* border pixel of windows */ static const unsigned int gappx = 10; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ -static const int topbar = 1; /* 0 means bottom bar */ +static const int topbar = 0; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=12" }; static const char dmenufont[] = "monospace:size=12"; static const char col_gray1[] = "#A0E418";