diff --git a/config.def.h b/config.def.h index d345379..58733db 100644 --- a/config.def.h +++ b/config.def.h @@ -223,7 +223,7 @@ static MouseShortcut mshortcuts[] = { /* Internal keyboard shortcuts. */ #define MODKEY Mod1Mask -#define TERMMOD (ControlMask|ShiftMask) +#define TERMMOD (Mod1Mask|ShiftMask) static Shortcut shortcuts[] = { /* mask keysym function argument */ @@ -239,8 +239,8 @@ static Shortcut shortcuts[] = { { TERMMOD, XK_Y, selpaste, {.i = 0} }, { ShiftMask, XK_Insert, selpaste, {.i = 0} }, { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, - { ShiftMask, XK_Page_Up, kscrollup, {.i = -1} }, - { ShiftMask, XK_Page_Down, kscrolldown, {.i = -1} }, + { MODKEY, XK_k, kscrollup, {.i = -1} }, + { MODKEY, XK_j, kscrolldown, {.i = -1} }, }; /* diff --git a/st b/st new file mode 100755 index 0000000..4359e1e Binary files /dev/null and b/st differ diff --git a/st.o b/st.o new file mode 100644 index 0000000..d7acaa5 Binary files /dev/null and b/st.o differ diff --git a/x.o b/x.o new file mode 100644 index 0000000..32c7cb1 Binary files /dev/null and b/x.o differ