updated sampleconfig-dev
[uzbl-mobile] / examples / configs / sampleconfig-dev
1
2 # example uzbl config. in a real config, we should obey the xdg spec
3 # all settings are optional.  you can use uzbl without any config at all (but it won't do much)
4
5 # keyboard behavior is vimstyle by default (all actions -> 1 key). set
6 # always_insert_mode to always be in insert mode and disable going out of it.
7 # if you do this, make sure you've set a modkey so you can reach the actions
8 # from insert mode by combining them with the modkey
9
10 # TODO: ability to attach misc things (spawn <foo>, script <bar>,.. to internal events)
11 # Usually you want to spawn a script to handle things, but any action (such as sh) can be used
12 set history_handler  = spawn ./examples/scripts/history.sh
13 set download_handler = spawn ./examples/scripts/download.sh
14 set cookie_handler   = spawn ./examples/scripts/cookies.sh
15
16 set minimum_font_size = 6
17 set font_size = 11
18 ## monospace_size defaults to font_size, but you can alter it independently
19 #set monospace_size = 10
20
21 ## Display or supress images within html sites
22 #set autoload_images = 0
23
24 ## Shrink images to window size
25 #set autoshrink_images = 0
26
27 ## Spellchecker
28 #set enable_spellcheck = 1
29
30 ## Private browsing
31 #set enbale_private = 0
32
33 ## The URI of a stylesheet that is applied to every page
34 #set stylesheet_uri = http://www.user.com/mystylelesheet.css
35
36 ## enable/disable JavaScript
37 #set disbale_scripts = 1
38
39
40 #
41 # use with bind ... = sh <shell-oneliner>
42 set shell_cmd         = sh -c
43
44
45
46 # Behaviour and appearance
47 set show_status       = 1
48 # you can optionally use this setting to override the background color of the statusbar from your GTK theme.
49 set status_background = #303030
50 set status_format     = <span font_family="monospace"><span background="khaki" foreground="black">MODE</span> [<span weight="bold" foreground="red">KEYCMD</span>] <span foreground="#606060"> LOAD_PROGRESSBAR </span><span foreground="#99FF66">URI</span> <span foreground="khaki">NAME</span> <span foreground="orange">MSG</span><span foreground="#606060">SELECTED_URI</span></span>
51 set status_top = 0
52 # define how your titlebar should look like. (short = statusbar is also shown, long = show everything you must see if statusbar is off)
53 set title_format_short = TITLE - Uzbl browser <NAME>
54 set title_format_long = KEYCMD MODE TITLE - Uzbl browser <NAME> > SELECTED_URI
55 # set the characters to use for, and the width of the progress bar
56 set status_pbar_done  = *
57 set status_pbar_pending = -
58 set status_pbar_width = 12
59
60 set modkey = Mod1
61 # reset to command mode when new page is loaded
62 set reset_command_mode = 1
63 # this var has precedence over reset_command_mode
64 set always_insert_mode = 0
65
66 # to start a local socks server, do : ssh -fND localhost:8118 localhost
67 #set  proxy_url       = http://127.0.0.1:8118
68 #values 0-3
69 #set  http_debug      = 0
70 #set  useragent       = uzbl (Webkit WEBKIT_MAJOR.WEBKIT_MINOR.WEBKIT_MICRO)
71 # Example user agent containing everything:
72 set  useragent       = Uzbl (Webkit WEBKIT_MAJOR.WEBKIT_MINOR.WEBKIT_MICRO) (SYSNAME NODENAME KERNREL KERNVER ARCH_SYSTEM [ARCH_UZBL]) (Commit COMMIT)
73 #set  max_conns       = 0
74 #set  max_conns_host  = 0
75
76 set fifo_dir = /tmp
77 set socket_dir = /tmp
78
79 # Key bindings
80 bind    j         = scroll_vert 20
81 bind    k         = scroll_vert -20
82 bind    h         = scroll_horz -20
83 bind    l         = scroll_horz 20
84 bind    <<        = scroll_begin
85 bind    >>        = scroll_end
86 bind    b         = back
87 bind    m         = forward
88 bind    s         = stop
89 bind    r         = reload
90 bind    R         = reload_ign_cache
91 bind    +         = zoom_in
92 bind    -         = zoom_out
93 bind    t         = toggle_status
94 # Hilight matches. Notice the * after the slash - it makes the command incremental, i.e. gets called
95 # on every character you type.  You can do `bind /_ = search %s' if you want it less interactive.
96 bind    /*        = search %s
97 bind    ?*        = search_reverse %s
98 #jump to next
99 bind    n         = search
100 bind    N         = search_reverse
101 bind    gh        = uri http://www.uzbl.org
102 #TODO: set uri?
103 bind    o _       = uri %s
104 bind    :wiki _   = uri http://wiki.archlinux.org/index.php/Special:Search?search=%s&go=Go
105 bind    gg _      = uri http://www.google.com/search?q=%s
106 bind    i         = toggle_insert_mode
107 # disable insert mode (1 to enable).  note that Esc works to disable, regardless of this setting
108 bind    I         = toggle_insert_mode 0
109 # Enclose the executable in quotes if it has spaces.  Any additional parameters you use will
110 # appear AFTER the default parameters
111 bind    B         = spawn ./examples/scripts/insert_bookmark.sh
112 bind    U         = spawn ./examples/scripts/load_url_from_history.sh
113 bind    u         = spawn ./examples/scripts/load_url_from_bookmarks.sh
114 # with the sample yank script, you can yank one of the arguments into clipboard/selection
115 bind    yurl      = spawn ./examples/scripts/yank.sh 8 primary
116 bind    ytitle    = spawn ./examples/scripts/yank.sh 9 clipboard
117 # does the same as yurl but without needing a script
118 bind    y2url     = sh 'echo -n $6 | xclip'
119 # go the page from primary selection
120 bind    p         = sh "echo act uri `xclip -selection primary -o` > $4"
121 # go to the page in clipboard
122 bind    P         = sh "echo act uri `xclip -selection clipboard -o` > $4"
123 bind    ZZ        = exit
124 bind    S         = js alert("hi");
125 # example showing how to use sh
126 # it sends a command to the fifo, whose path is told via a positional param
127 # if fifo_dir is not set, it'll echo to a file named (null) somewhere >:) remember to delete it
128 # The body of the shell command should be one parameter, so if it has spaces like here,
129 # you must enclose it in quotes.  Remember to escape (and double-escape) quotes and backslashes
130 # in the body.  Any additional parameters you use will appear AFTER the default parameters (cfg file
131 # path, fifo & socket dirs, etc.)
132 bind    XS        = sh 'echo "act script alert (\\"This is sent by the shell via a fifo\\")" > "$4"'
133
134
135 # this script allows you to configure (per domain) values to fill in form fields (eg login information) and to fill in these values automatically
136 bind za = spawn ./examples/scripts/formfiller.sh
137 bind ze = spawn ./examples/scripts/formfiller.sh edit
138 bind zn = spawn ./examples/scripts/formfiller.sh new
139 bind zl = spawn ./examples/scripts/formfiller.sh load
140
141 # we ship some javascripts to do keyboard based link hinting/following.  (webkit does not have C DOM bindings yet)
142 # this is similar to how it works in vimperator (and konqueror)
143 # TODO: did we resolve: "no click() event for hyperlinks so no referrer set" ?
144 #hit F to toggle the Hints (now in form of link numbering)
145 bind    F = script ./examples/scripts/hint.js
146 # the most stable version:
147 bind    fl* = script ./examples/scripts/follow_Numbers.js %s
148 # using strings, not polished yet:
149 bind    fL* = script ./examples/scripts/follow_Numbers_Strings.js %s
150
151 # you can use this to disable all plugins
152 set disable_plugins = 0
153
154 # "home" page if you will
155 set uri = uzbl.org