enable cookie handler in configs
[uzbl-mobile] / examples / configs / sampleconfig-dev
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_handler = ./examples/scripts/history.sh
15 download_handler = ./examples/scripts/download.sh
16 cookie_handler = ./examples/scripts/history.sh
17 fifo_dir = /tmp
18 socket_dir = /tmp
19 always_insert_mode = 0
20 modkey = Mod1
21 show_status = 1
22 status_top = 0
23
24 [bindings]
25 # scroll down/up/left/right
26 j = scroll_vert 20
27 k = scroll_vert -20
28 h = scroll_horz -20
29 l = scroll_horz 20
30 b = back
31 m = forward
32 s = stop
33 r = reload
34 R = reload_ign_cache
35 f = follow_link_here
36 F = follow_link_new_tab
37 w = follow_link_new_window
38 + = zoom_in
39 - = zoom_out
40 t = toggle_status
41 #hilight matches
42 /_ = search %s
43 #jump to next
44 ; = search
45 gh      = uri http://www.uzbl.org
46 o _     = uri %s
47 :wiki _ = uri http://wiki.archlinux.org/index.php/Special:Search?search=%s&go=Go
48 gg _    = uri http://www.google.com/search?q=%s
49 i = insert_mode
50 B = spawn ./examples/scripts/insert_bookmark.sh
51 u = spawn ./examples/scripts/load_url_from_history.sh
52 U = spawn ./examples/scripts/load_url_from_bookmarks.sh
53 ZZ = exit
54 S = script alert("hi");
55
56 [network]
57 # to start a local socks server, do : ssh -fND localhost:8118 localhost
58 #proxy_server = http://127.0.0.1:8118
59 #values 0-3
60 http_debug = 0
61 user-agent = uzbl (Webkit %webkit-major%.%webkit-minor%.%webkit-micro%)
62 # Example user agent containing everything:
63 #user-agent = Uzbl (Webkit %webkit-major%.%webkit-minor%.%webkit-micro%) (%sysname% %nodename% %kernrel% %kernver% %arch-system% [%arch-uzbl%]) (Commit %commit%)
64 max_conns = 
65 max_conns_per_host = 
66