surf

my build of surf
git clone git://git.ckyln.com/~cem/surf.git
Log | Files | Refs | README | LICENSE

commit ea2692837124bed94773065ff373ae34dff95024
parent 98b824a206b8ad22d245a0754100175c06617649
Author: Cem Keylan <cem@ckyln.com>
Date:   Sun, 24 Nov 2019 10:20:46 +0300

remove bookmarking patch

Diffstat:
Mconfig.def.h | 17++---------------
1 file changed, 2 insertions(+), 15 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -72,9 +72,8 @@ static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE | #define SETPROP(r, s, p) { \ .v = (const char *[]){ "/bin/sh", "-c", \ "prop=\"$(printf '%b' \"$(xprop -id $1 $2 " \ - "| sed \"s/^$2(STRING) = //;s/^\\\"\\(.*\\)\\\"$/\\1/\" && cat ~/.surf/bookmarks)\" " \ - "| dmenu -l 10 -p \"$4\" -w $1)\" && " \ - "xprop -id $1 -f $3 8s -set $3 \"$prop\"", \ + "| sed \"s/^$2(STRING) = //;s/^\\\"\\(.*\\)\\\"$/\\1/\")\" " \ + "| dmenu -p \"$4\" -w $1)\" && xprop -id $1 -f $3 8s -set $3 \"$prop\"", \ "surf-setprop", winid, r, s, p, NULL \ } \ } @@ -119,17 +118,6 @@ static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE | "xprop -id $1 -f $0 8s -set $0 \"$prop\"", \ p, winid, NULL } } -/* BM_ADD(readprop) */ -#define BM_ADD(r) {\ - .v = (const char *[]){ "/bin/sh", "-c", \ - "(echo $(xprop -id $0 $1) | cut -d '\"' -f2 " \ - "| sed 's/.*https*:\\/\\/\\(www\\.\\)\\?//' && cat ~/.surf/bookmarks) " \ - "| awk '!seen[$0]++' > ~/.surf/bookmarks.tmp && " \ - "mv ~/.surf/bookmarks.tmp ~/.surf/bookmarks", \ - winid, r, NULL \ - } \ -} - /* styles */ /* * The iteration will stop at the first match, beginning at the beginning of @@ -230,7 +218,6 @@ static Key keys[] = { { MODKEY|GDK_SHIFT_MASK, GDK_KEY_e, externalpipe, { .v = editscreen } }, { MODKEY, GDK_KEY_y, externalpipe, { .v = yanklink } }, - { MODKEY, GDK_KEY_m, spawn, BM_ADD("_SURF_URI") }, { MODKEY, GDK_KEY_s, spawn, SEARCH() }, { MODKEY, GDK_KEY_w, playexternal, { 0 } }, };