|
|
|
@ -168,16 +168,6 @@ static MouseShortcut mshortcuts[] = { |
|
|
|
{ Button5, XK_NO_MOD, "\005" }, |
|
|
|
}; |
|
|
|
|
|
|
|
static char *openurlcmd[] = { "/bin/sh", "-c", |
|
|
|
"sed 's/.*│//g' | tr -d '\n' | grep -aEo '(((http|https)://|www\\.)[a-zA-Z0-9.]*[:]?[a-zA-Z0-9./&%?#=_-]*)|((magnet:\\?xt=urn:btih:)[a-zA-Z0-9]*)'| uniq | sed 's/^www./http:\\/\\/www\\./g' | dmenu -i -p 'Follow which url?' -l 10 | xargs -r xdg-open", |
|
|
|
"externalpipe", NULL }; |
|
|
|
|
|
|
|
static char *copyurlcmd[] = { "/bin/sh", "-c", |
|
|
|
"sed 's/.*│//g' | tr -d '\n' | grep -aEo '(((http|https)://|www\\.)[a-zA-Z0-9.]*[:]?[a-zA-Z0-9./&%?#=_-]*)|((magnet:\\?xt=urn:btih:)[a-zA-Z0-9]*)' | uniq | sed 's/^www./http:\\/\\/www\\./g' | dmenu -i -p 'Copy which url?' -l 10 | tr -d '\n' | xclip -selection clipboard", |
|
|
|
"externalpipe", NULL }; |
|
|
|
|
|
|
|
static char *copyoutput[] = { "/bin/sh", "-c", "st-copyout", "externalpipe", NULL }; |
|
|
|
|
|
|
|
/* Internal keyboard shortcuts. */ |
|
|
|
#define MODKEY Mod1Mask |
|
|
|
#define TERMMOD (ControlMask|ShiftMask) |
|
|
|
@ -193,14 +183,8 @@ static Shortcut shortcuts[] = { |
|
|
|
{ MODKEY, XK_v, clippaste, {.i = 0} }, |
|
|
|
{ MODKEY, XK_p, selpaste, {.i = 0} }, |
|
|
|
{ MODKEY, XK_Num_Lock, numlock, {.i = 0} }, |
|
|
|
{ MODKEY, XK_Control_L, iso14755, {.i = 0} }, |
|
|
|
{ MODKEY, XK_k, kscrollup, {.i = 1} }, |
|
|
|
{ MODKEY, XK_j, kscrolldown, {.i = 1} }, |
|
|
|
{ TERMMOD, XK_U, zoom, {.f = +1} }, |
|
|
|
{ TERMMOD, XK_I, zoom, {.f = -1} }, |
|
|
|
{ MODKEY, XK_u, externalpipe, {.v = openurlcmd } }, |
|
|
|
{ MODKEY, XK_y, externalpipe, {.v = copyurlcmd } }, |
|
|
|
{ MODKEY, XK_o, externalpipe, {.v = copyoutput } }, |
|
|
|
}; |
|
|
|
|
|
|
|
/* |
|
|
|
|