surf.h (8921B)
1 /* modifier 0 means no modifier */ 2 static int surfuseragent = 1; /* Append Surf version to default WebKit user agent */ 3 static int extendedtitle = 0; /* 0 to not append surf's toggle and page status to title. */ 4 static char *fulluseragent = ""; /* Or override the whole user agent string */ 5 static char *scriptfile = "~/.surf/script.js"; 6 static char *styledir = "~/.surf/styles/"; 7 static char *certdir = "~/.surf/certificates/"; 8 static char *cachedir = "~/.surf/cache/"; 9 static char *cookiefile = "~/.surf/cookies.txt"; 10 static char *historyfile = "~/.surf/history.txt"; 11 12 13 static SearchEngine searchengines[] = { 14 { "d ", "https://duckduckgo.com/?q=%s" }, 15 { "w ", "https://en.wikipedia.org/w/index.php?search=%s" }, 16 { "g ", "https://google.com/?q=%s" }, 17 { "m ", "https://man.voidlinux.org/?apropos=1&query=%s" }, 18 { "gh ", "https://github.com/search?q=%s" }, 19 { "r ", "https://www.reddit.com/search/?q=%s" } 20 }; 21 22 /* Webkit default features */ 23 /* Highest priority value will be used. 24 * Default parameters are priority 0 25 * Per-uri parameters are priority 1 26 * Command parameters are priority 2 27 */ 28 static Parameter defconfig[ParameterLast] = { 29 /* parameter Arg value priority */ 30 [AccessMicrophone] = { { .i = 0 }, }, 31 [AccessWebcam] = { { .i = 0 }, }, 32 [Certificate] = { { .i = 0 }, }, 33 [CaretBrowsing] = { { .i = 0 }, }, 34 [CookiePolicies] = { { .v = "@Aa" }, }, 35 // [DarkMode] = { { .i = 0 }, }, 36 [DefaultCharset] = { { .v = "UTF-8" }, }, 37 [DiskCache] = { { .i = 1 }, }, 38 [DNSPrefetch] = { { .i = 0 }, }, 39 [Ephemeral] = { { .i = 0 }, }, 40 [FileURLsCrossAccess] = { { .i = 0 }, }, 41 [FontSize] = { { .i = 12 }, }, 42 [FrameFlattening] = { { .i = 0 }, }, 43 [Geolocation] = { { .i = 0 }, }, 44 [HideBackground] = { { .i = 0 }, }, 45 [Inspector] = { { .i = 0 }, }, 46 [Java] = { { .i = 1 }, }, 47 [JavaScript] = { { .i = 1 }, }, 48 [KioskMode] = { { .i = 0 }, }, 49 [LoadImages] = { { .i = 1 }, }, 50 [MediaManualPlay] = { { .i = 1 }, }, 51 [PreferredLanguages] = { { .v = (char *[]){ NULL } }, }, 52 [RunInFullscreen] = { { .i = 0 }, }, 53 [ScrollBars] = { { .i = 1 }, }, 54 [ShowIndicators] = { { .i = 1 }, }, 55 [SiteQuirks] = { { .i = 1 }, }, 56 [SmoothScrolling] = { { .i = 0 }, }, 57 [SpellChecking] = { { .i = 0 }, }, 58 [SpellLanguages] = { { .v = ((char *[]){ "en_US", NULL }) }, }, 59 [StrictTLS] = { { .i = 1 }, }, 60 [Style] = { { .i = 1 }, }, 61 [WebGL] = { { .i = 0 }, }, 62 [ZoomLevel] = { { .f = 1.0 }, }, 63 [ClipboardNotPrimary] = { { .i = 1 }, }, 64 }; 65 66 static UriParameters uriparams[] = { 67 { "(://|\\.)suckless\\.org(/|$)", { 68 [JavaScript] = { { .i = 0 }, 1 }, 69 }, }, 70 }; 71 72 /* default window size: width, height */ 73 static int winsize[] = { 800, 600 }; 74 75 static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE | 76 WEBKIT_FIND_OPTIONS_WRAP_AROUND; 77 78 #define PROMPT_GO "Go:" 79 #define PROMPT_FIND "Find:" 80 81 /* SETPROP(readprop, setprop, prompt)*/ 82 #define SETPROP(r, s, p) { \ 83 .v = (const char *[]){ "/bin/sh", "-c", \ 84 "prop=\"$(printf '%b' \"$(xprop -id $1 "r" " \ 85 "| sed -e 's/^"r"(UTF8_STRING) = \"\\(.*\\)\"/\\1/' " \ 86 " -e 's/\\\\\\(.\\)/\\1/g')\" " \ 87 "| dmenu -p '"p"' -w $1)\" " \ 88 "&& xprop -id $1 -f "s" 8u -set "s" \"$prop\"", \ 89 "surf-setprop", winid, NULL \ 90 } \ 91 } 92 93 /* DOWNLOAD(URI, referer) */ 94 #define DOWNLOAD(u, r) { \ 95 .v = (const char *[]){ "st", "-e", "/bin/sh", "-c",\ 96 "curl -g -L -J -O -A \"$1\" -b \"$2\" -c \"$2\"" \ 97 " -e \"$3\" \"$4\"; read", \ 98 "surf-download", useragent, cookiefile, r, u, NULL \ 99 } \ 100 } 101 102 /* PLUMB(URI) */ 103 /* This called when some URI which does not begin with "about:", 104 * "http://" or "https://" should be opened. 105 */ 106 #define PLUMB(u) {\ 107 .v = (const char *[]){ "/bin/sh", "-c", \ 108 "xdg-open \"$0\"", u, NULL \ 109 } \ 110 } 111 112 /* VIDEOPLAY(URI) */ 113 #define VIDEOPLAY(u) {\ 114 .v = (const char *[]){ "/bin/sh", "-c", \ 115 "mpv --really-quiet \"$0\"", u, NULL \ 116 } \ 117 } 118 119 /* styles */ 120 /* 121 * The iteration will stop at the first match, beginning at the beginning of 122 * the list. 123 */ 124 static SiteSpecific styles[] = { 125 /* regexp file in $styledir */ 126 { ".*", "default.css" }, 127 }; 128 129 /* certificates */ 130 /* 131 * Provide custom certificate for urls 132 */ 133 static SiteSpecific certs[] = { 134 /* regexp file in $certdir */ 135 { "://suckless\\.org/", "suckless.org.crt" }, 136 }; 137 138 #define MODKEY GDK_CONTROL_MASK 139 140 /* hotkeys */ 141 /* 142 * If you use anything else but MODKEY and GDK_SHIFT_MASK, don't forget to 143 * edit the CLEANMASK() macro. 144 */ 145 static Key keys[] = { 146 /* modifier keyval function arg */ 147 { MODKEY, GDK_KEY_g, spawn, SETPROP("_SURF_URI", "_SURF_GO", PROMPT_GO) }, 148 { MODKEY, GDK_KEY_f, spawn, SETPROP("_SURF_FIND", "_SURF_FIND", PROMPT_FIND) }, 149 { MODKEY, GDK_KEY_slash, spawn, SETPROP("_SURF_FIND", "_SURF_FIND", PROMPT_FIND) }, 150 151 { 0, GDK_KEY_Escape, stop, { 0 } }, 152 153 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_r, reload, { .i = 1 } }, 154 { MODKEY, GDK_KEY_r, reload, { .i = 0 } }, 155 156 { MODKEY, GDK_KEY_l, navigate, { .i = +1 } }, 157 { MODKEY, GDK_KEY_h, navigate, { .i = -1 } }, 158 159 /* vertical and horizontal scrolling, in viewport percentage */ 160 { MODKEY, GDK_KEY_j, scrollv, { .i = +10 } }, 161 { MODKEY, GDK_KEY_k, scrollv, { .i = -10 } }, 162 { MODKEY, GDK_KEY_space, scrollv, { .i = +50 } }, 163 { MODKEY, GDK_KEY_b, scrollv, { .i = -50 } }, 164 { MODKEY, GDK_KEY_i, scrollh, { .i = +10 } }, 165 { MODKEY, GDK_KEY_u, scrollh, { .i = -10 } }, 166 167 168 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_j, zoom, { .i = -1 } }, 169 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_k, zoom, { .i = +1 } }, 170 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_q, zoom, { .i = 0 } }, 171 { MODKEY, GDK_KEY_minus, zoom, { .i = -1 } }, 172 { MODKEY, GDK_KEY_plus, zoom, { .i = +1 } }, 173 174 { MODKEY, GDK_KEY_p, clipboard, { .i = 1 } }, 175 { MODKEY, GDK_KEY_c, clipboard, { .i = 0 } }, 176 177 { MODKEY, GDK_KEY_n, find, { .i = +1 } }, 178 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_n, find, { .i = -1 } }, 179 180 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_p, print, { 0 } }, 181 { MODKEY, GDK_KEY_t, showcert, { 0 } }, 182 183 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_a, togglecookiepolicy, { 0 } }, 184 { 0, GDK_KEY_F11, togglefullscreen, { 0 } }, 185 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_o, toggleinspector, { 0 } }, 186 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_e, toggletitle, { 0 } }, 187 188 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_c, toggle, { .i = CaretBrowsing } }, 189 // { MODKEY|GDK_SHIFT_MASK, GDK_KEY_f, toggle, { .i = FrameFlattening } }, 190 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_g, toggle, { .i = Geolocation } }, 191 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_s, toggle, { .i = JavaScript } }, 192 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_i, toggle, { .i = LoadImages } }, 193 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_b, toggle, { .i = ScrollBars } }, 194 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_t, toggle, { .i = StrictTLS } }, 195 { MODKEY|GDK_SHIFT_MASK, GDK_KEY_m, toggle, { .i = Style } }, 196 // { MODKEY|GDK_SHIFT_MASK, GDK_KEY_d, toggle, { .i = DarkMode } }, 197 }; 198 199 /* button definitions */ 200 /* target can be OnDoc, OnLink, OnImg, OnMedia, OnEdit, OnBar, OnSel, OnAny */ 201 static Button buttons[] = { 202 /* target event mask button function argument stop event */ 203 { OnLink, 0, 2, clicknewwindow, { .i = 0 }, 1 }, 204 { OnLink, MODKEY, 2, clicknewwindow, { .i = 1 }, 1 }, 205 { OnLink, MODKEY, 1, clicknewwindow, { .i = 1 }, 1 }, 206 { OnAny, 0, 8, clicknavigate, { .i = -1 }, 1 }, 207 { OnAny, 0, 9, clicknavigate, { .i = +1 }, 1 }, 208 { OnMedia, MODKEY, 1, clickexternplayer, { 0 }, 1 }, 209 }; 210 211 #define HOMEPAGE "https://duckduckgo.com/"