--- ./config.def.h +++ ./config.def.h @@ -1,26 +1,26 @@ static const Bool wmborder = True; -static int fontsize = 22; +static int fontsize = 20; static double overlay_delay = 1.0; //in seconds static double repeat_delay = 0.75; //in seconds, will not work on keys with overlays static int scan_rate = 50; //scan rate in microseconds, affects key repetition rate static int heightfactor = 14; //one row of keys takes up 1/x of the screen height -static int xspacing = 5; -static int yspacing = 5; +static int xspacing = 2; +static int yspacing = 2; static const char *defaultfonts[] = { - "DejaVu Sans:bold:size=22" + "DejaVu Sans:normal:size=20" }; static const char *defaultcolors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#bbbbbb", "#132a33" }, - [SchemeNormShift] = { "#008ac0", "#132a33" }, - [SchemeNormABC] = { "#ffffff", "#14313d" }, - [SchemeNormABCShift] = { "#008ac0", "#14313d" }, - [SchemePress] = { "#ffffff", "#259937" }, - [SchemePressShift] = { "#00c001", "#259937" }, - [SchemeHighlight] = { "#58a7c6", "#005577" }, - [SchemeHighlightShift] = { "#008ac0", "#005577" }, - [SchemeOverlay] = { "#ffffff", "#2b3313" }, - [SchemeOverlayShift] = { "#008ac0", "#2b3313" }, - [SchemeWindow] = { "#bbbbbb", "#132a33" }, + [SchemeNorm] = { "#bbbbbb", "#383c3d" }, + [SchemeNormShift] = { "#008ac0", "#383c3d" }, + [SchemeNormABC] = { "#ffffff", "#383c3d" }, + [SchemeNormABCShift] = { "#008ac0", "#383c3d" }, + [SchemePress] = { "#ffffff", "#e5aa3d" }, + [SchemePressShift] = { "#00c001", "#e5aa3d" }, + [SchemeHighlight] = { "#58a7c6", "#666666" }, + [SchemeHighlightShift] = { "#008ac0", "#666666" }, + [SchemeOverlay] = { "#ffffff", "#272a2b" }, + [SchemeOverlayShift] = { "#008ac0", "#272a2b" }, + [SchemeWindow] = { "#bbbbbb", "#000000" }, };