dextra

dynamic window manager extra repository, themes, styles, dotfiles
git clone git://git.suckless.org/dextra
Log | Files | Refs | LICENSE

commit a7a118f117cf6b15baeadda2b6bbe30d5c837070
parent 3ea98d1bcf31f2e685c796991fd0110d968811ef
Author: Anselm R Garbe <anselm@garbe.us>
Date:   Wed, 16 Sep 2015 21:42:08 +0200

minor changes

Diffstat:
xps13_9343/dmenu_config.h | 23++++++++++++++++-------
xps13_9343/dwm_config.h | 18+++++++++---------
xps13_9343/st_config.h | 10++++++----
3 files changed, 31 insertions(+), 20 deletions(-)

diff --git a/xps13_9343/dmenu_config.h b/xps13_9343/dmenu_config.h @@ -6,14 +6,23 @@ static Bool topbar = True; /* -b option; if False, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "Liberation Mono:pixelsize=30:antialias=false:autohint=false" + "Dejavu Sans Mono:pixelsize=30:antialias=true:autohint=false" }; static const char *prompt = NULL; /* -p option; prompt to the elft of input field */ -static const char *normbgcolor = "#222222"; /* -nb option; normal background */ -static const char *normfgcolor = "#bbbbbb"; /* -nf option; normal foreground */ -static const char *selbgcolor = "#005577"; /* -sb option; selected background */ -static const char *selfgcolor = "#eeeeee"; /* -sf option; selected foreground */ -static const char *outbgcolor = "#00ffff"; -static const char *outfgcolor = "#000000"; + +static const char *normbgcolor = "#111"; /* -nb option; normal background */ +static const char *normfgcolor = "#ccc"; /* -nf option; normal foreground */ +static const char *selbgcolor = "#336"; /* -sb option; selected background */ +static const char *selfgcolor = "#ccc"; /* -sf option; selected foreground */ +static const char *outbgcolor = "#111"; +static const char *outfgcolor = "#99c"; +#if 0 +static const char *normbgcolor = "#eee"; /* -nb option; normal background */ +static const char *normfgcolor = "#333"; /* -nf option; normal foreground */ +static const char *selbgcolor = "#06c"; /* -sb option; selected background */ +static const char *selfgcolor = "#eee"; /* -sf option; selected foreground */ +static const char *outbgcolor = "#fc0"; +static const char *outfgcolor = "#333"; +#endif /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0; diff --git a/xps13_9343/dwm_config.h b/xps13_9343/dwm_config.h @@ -2,16 +2,16 @@ /* appearance */ static const char *fonts[] = { - "Liberation Mono:pixelsize=30:antialias=false:autohint=false" + "Dejavu Sans Mono:pixelsize=30:antialias=true:autohint=false" }; -static const char dmenufont[] = "Liberation Mono:pixelsize=30:antialias=false:autohint=false"; -static const char normbordercolor[] = "#444444"; -static const char normbgcolor[] = "#222222"; -static const char normfgcolor[] = "#bbbbbb"; -static const char selbordercolor[] = "#005577"; -static const char selbgcolor[] = "#005577"; -static const char selfgcolor[] = "#eeeeee"; -static const unsigned int borderpx = 1; /* border pixel of windows */ +static const char dmenufont[] = "Dejavu Sans Mono:pixelsize=30:antialias=true:autohint=false"; +static const char normbordercolor[] = "#333"; +static const char normbgcolor[] = "#111"; +static const char normfgcolor[] = "#ccc"; +static const char selbordercolor[] = "#99c"; +static const char selbgcolor[] = "#336"; +static const char selfgcolor[] = "#ccc"; +static const unsigned int borderpx = 2; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const Bool showbar = True; /* False means no bar */ static const Bool topbar = True; /* False means bottom bar */ diff --git a/xps13_9343/st_config.h b/xps13_9343/st_config.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char font[] = "Liberation Mono:pixelsize=30:antialias=false:autohint=false"; +static char font[] = "Dejavu Sans Mono:pixelsize=30:antialias=true:autohint=false"; static int borderpx = 2; /* @@ -93,7 +93,9 @@ static const char *colorname[] = { [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - "#cccccc", + "#669", + "#111", + "#ccc", }; @@ -101,8 +103,8 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor */ -static unsigned int defaultfg = 7; -static unsigned int defaultbg = 0; +static unsigned int defaultfg = 258; +static unsigned int defaultbg = 257; static unsigned int defaultcs = 256;