Merge branch 'master' of git://github.com/Dieterbe/uzbl into dieter/master
[uzbl-mobile] / sampleconfig
1 # example uzbl config. in a real config, we should obey the xdg spec
2
3 # all keys in the behavior group are optional.  if not set, the corresponding behavior is disabed.
4 # bindings_internal denote keys to trigger actions internally in uzbl
5 # bindings_external denote keys to trigger scripts outside uzbl
6
7 # keyboard behavior is vimstyle by default (all actions -> 1 key). set
8 # always_insert_mode to always be in insert mode and disable going out of it.
9 # if you do this, make sure you've set a modkey so you can reach the actions
10 # from insert mode by combining them with the modkey
11
12 [behavior]
13 history_file = /tmp/uzbl.history
14 download_handler = ./extra/download.sh
15 fifo_dir = /tmp
16 always_insert_mode = 0
17 modkey = Mod4
18
19 [bindings_internal]
20 next = n
21 follow_link_here = f
22 follow_link_new_tab = F
23 follow_link_new_window = w
24
25 [bindings_external]
26 ./extra/insert_bookmark.sh = b
27 ./extra/load_url_from_history.sh = u
28 ./extra/load_url_from_bookmarks.sh = U
29
30 [alias]
31 b  = back
32 f  = forward
33 z+ = zoom in
34 z- = zoom out
35 r  = refresh
36 s  = stop
37
38 [network]