X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=blobdiff_plain;f=config.h;h=87ec5969be7cfa3982f1bb8700731a8470ef1dd8;hp=5c656b1b5adce0959a188a2dd183ac195b22295e;hb=d945d7093d1822bf249e2e38ce97e5b37f695fdb;hpb=e2aa4d8e8467c0cf53bcc2fd31bfe4586658a899 diff --git a/config.h b/config.h index 5c656b1..87ec596 100644 --- a/config.h +++ b/config.h @@ -6,7 +6,8 @@ * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ static char font[] = "Fantasque Sans Mono:pixelsize=16:antialias=true:autohint=false"; -static int borderpx = 1; +//static int borderpx = 25; // setting for run dialog +static int borderpx = 1; // normal setting static int histsize = 2000; static char shell[] = "/bin/sh"; static char *utmp = NULL; @@ -58,7 +59,8 @@ static unsigned int tabspaces = 4; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "#2e3436", + // "#0d1b51", // background for run dialog + "#2e3436", // normal background "#cc0000", "#4e9a06", "#c4a000", @@ -122,6 +124,8 @@ static Shortcut shortcuts[] = { { ShiftMask, XK_Insert, selpaste, {.i = 0} }, { MODKEY|ShiftMask, XK_Insert, clippaste, {.i = 0} }, { MODKEY, XK_Num_Lock, numlock, {.i = 0} }, + { ShiftMask, XK_Up, kscrollup, {.i = -1} }, + { ShiftMask, XK_Down, kscrolldown, {.i = -1} }, { ShiftMask, XK_Page_Up, kscrollup, {.i = -1} }, { ShiftMask, XK_Page_Down, kscrolldown, {.i = -1} }, };