all repos — site @ 74d2a1c990376ef1e6958e999b6588fcea1fc7e2

source for my site, found at icyphox.sh

pages/txt/mnml-browsing.txt (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
---
template:
title: Vimb: my Firefox replacement
subtitle: Web browsing, suckless style
date: 2020-01-16
url: mnml-browsing
---


After having recently installed [KISS](https://getkiss.org), and
building Firefox from source, I was exposed to the true monstrosity that
Firefox -- and web browsers in general---is. It took all of 9 hours to
build the dependencies and then Firefox itself.

Sure, KISS now ships Firefox binaries in the
[firefox-bin](https://github.com/kisslinux/repo/tree/master/extra/firefox-bin)
package; I decided to get rid of that slow mess anyway.

## Enter vimb

[vimb](https://fanglingsu.github.io/vimb/) is a browser based on
[webkit2gtk](https://webkitgtk.org/), with a Vim-like interface. 
`webkit2gtk` builds in less than a minute -- it blows Firefox out of
the water, on that front.

There isn't much of a UI to it -- if you've used Vimperator/Pentadactyl
(Firefox plugins), vimb should look familiar to you.
It can be configured via a `config.h` or a text based config file at
`~/.config/vimb/config`.
Each "tab" opens a new instance of vimb, in a new window but this can
get messy really fast if you have a lot of tabs open.

## Enter tabbed

[tabbed](https://tools.suckless.org/tabbed/) is a tool to _embed_ X apps
which support xembed into a tabbed UI. This can be used in conjunction
with vimb, like so:

```
tabbed vimb -e
```

Where the `-e` flag is populated with the `XID`, by tabbed. Configuring
Firefox-esque keybinds in tabbed's `config.h` is relatively easy. Once
that's done -- voilĂ ! A fairly sane, Vim-like browsing experience that's
faster and has a smaller footprint than Firefox.

## Ad blocking

Ad blocking support isn't built-in and there is no plugin system
available. There are two options for ad blocking:

1. [wyebadblock](https://github.com/jun7/wyebadblock)
2. `/etc/hosts`

## Caveats

_Some_ websites tend to not work because they detect vimb as an older
version of Safari (same web engine). This is a minor inconvenience, and
not a dealbreaker for me. I also cannot login to Google's services for
some reason, which is mildly annoying, but it's good in a way -- I am now
further incentivised to dispose of my Google account.

And here's the screenshot y'all were waiting for:

![vimb](/static/img/vimb.png)