all repos — st @ 96c230e476a4fb446a8fa8d651c88fda32cd5427

st (suckless terminal) config

Add key definition for printer sequences

These new combinations generate the same behaviour (basically) of
vt102. It is a good way of communicating st with other programs.

[0] http://www.vt100.net/docs/vt102-ug/chapter2.html
Roberto E. Vargas Caballero k0ga@shike2.com
commit

96c230e476a4fb446a8fa8d651c88fda32cd5427

parent

6166a1afc8c7875ce9ba62e5001040014269a26d

2 files changed, 14 insertions(+), 0 deletions(-)

jump to
M config.def.hconfig.def.h

@@ -107,6 +107,8 @@ #define MODKEY Mod1Mask

static Shortcut shortcuts[] = { /* mask keysym function argument */ + { ControlMask, XK_Print, toggleprinter, {.i = 0} }, + { ShiftMask, XK_Print, printscreen, {.i = 0} }, { MODKEY|ShiftMask, XK_Prior, xzoom, {.i = +1} }, { MODKEY|ShiftMask, XK_Next, xzoom, {.i = -1} }, { ShiftMask, XK_Insert, selpaste, {.i = 0} },
M st.cst.c

@@ -314,6 +314,8 @@ static void clippaste(const Arg *);

static void numlock(const Arg *); static void selpaste(const Arg *); static void xzoom(const Arg *); +static void printscreen(const Arg *) ; +static void toggleprinter(const Arg *); /* Config.h for applying patches and the configuration. */ #include "config.h"

@@ -2280,6 +2282,16 @@ opt_io, strerror(errno));

close(iofd); iofd = -1; } +} + +void +toggleprinter(const Arg *arg) { + term.mode ^= MODE_PRINT; +} + +void +printscreen(const Arg *arg) { + tdump(); } void