]> git.armaanb.net Git - chorizo.git/blob - README
Fix lulz
[chorizo.git] / README
1 zea - zeig's einfach an
2 =======================
3
4 zea is a minimalistic web browser using Gtk2, GLib and WebKit. "Zeig's
5 einfach an" is german and translates roughly to "just show it" (the damn
6 web page).
7
8 Features:
9
10         - A WebKit viewport
11         - An input box to change the current URL
12         - Global content zoom
13         - Pluggability into suckless' tabbed
14         - vi-like scrolling (modified by CTRL)
15         - Searching the current page for a word
16         - Adblock
17         - Support for Flash and Java
18
19 Planned features:
20
21         - Keyword based searching (opening "wi foo" will search wikipedia)
22
23
24 Using zea with tabbed
25 =====================
26
27 The order of arguments for zea doesn't matter. This means you can run it
28 like this:
29
30         $ tabbed -c ./zea file:///home/hans/bookmarks.html -z 0.8 -e
31
32 Each new tab will then show your bookmarks and is scaled by a factor of
33 0.8.
34
35
36 Adblock
37 =======
38
39 zea has built-in adblock functionality. In each line of
40
41         ~/.config/zea/adblock.black
42
43 you can store a regular expression. These expressions match
44 case-insensitive and partially, i.e. ".*foo.*" is the same as ".*FOO.*"
45 and you can use anchors like "^https?://...".
46
47
48 Literature
49 ==========
50
51 API references:
52
53         - http://webkitgtk.org/reference/webkitgtk/stable/index.html
54         - https://developer.gnome.org/gtk2/stable/index.html
55         - https://developer.gnome.org/glib/stable/index.html
56
57 Regular expressions supported by GRegex, you can use these in your
58 adblock patterns:
59
60         - https://developer.gnome.org/glib/stable/glib-regex-syntax.html