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