keybind to start a new uzbl instance from the page in primary selection
[uzbl-mobile] / examples / config / uzbl / config
1 # example uzbl config.
2 # all settings are optional.  you can use uzbl without any config at all (but it won't do much)
3
4 # keyboard behavior is vimstyle by default, but you can change this
5 # set always_insert_mode to always be in insert mode and disable going out of it.
6 # if you do this, make sure you've set a modkey so you can reach the commands
7 # from insert mode by combining them with the modkey
8
9 # Usually you want to spawn a script to handle things, but any command (such as sh) can be used
10 set history_handler  = spawn $XDG_DATA_HOME/uzbl/scripts/history.sh
11 set download_handler = spawn $XDG_DATA_HOME/uzbl/scripts/download.sh
12 set cookie_handler   = spawn $XDG_DATA_HOME/uzbl/scripts/cookies.py
13
14 # You can bind whatever things (spawn <foo>, script <bar>,..) to some events TODO: make events system more generic
15 set load_start_handler = set status_message = <span foreground="khaki">wait</span>
16 set load_commit_handler = set status_message = <span foreground="green">recv</span>
17 set load_finish_handler = set status_message = <span foreground="gold">done</span>
18
19
20 set minimum_font_size = 6
21 set font_size = 11
22 ## monospace_size defaults to font_size, but you can alter it independently
23 #set monospace_size = 10
24
25 ## Display or supress images within html sites
26 #set autoload_images = 0
27
28 ## Shrink images to window size
29 #set autoshrink_images = 0
30
31 ## Spellchecker
32 #set enable_spellcheck = 1
33
34 ## Private browsing
35 #set enbale_private = 0
36
37 ## The URI of a stylesheet that is applied to every page
38 #set stylesheet_uri = http://www.user.com/mystylelesheet.css
39
40 ## enable/disable JavaScript
41 #set disbale_scripts = 1
42
43 ## Whether text areas are resizable
44 #set resizeable_text_areas = 1
45
46 ## The default encoding used to display text
47 #set default_encoding = iso-8859-1
48
49 ## Whether background images should be printed
50 #set print_background = 0
51
52 ## Enforce a resolution of 96 DPI. This is meant for compatibility with
53 ## web pages which cope badly with different screen resolutions
54 #set enforce_96_dpi = 1
55
56
57 #
58 # use with bind ... = sh <shell-oneliner>
59 set shell_cmd         = sh -c
60
61
62
63 # Behaviour and appearance
64 set show_status       = 1
65 # you can optionally use this setting to override the background color of the statusbar from your GTK theme.
66 set status_background = #303030
67 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>
68 set status_top        = 0
69 # define how your titlebar should look like. (short = statusbar is also shown, long = show everything you must see if statusbar is off)
70 set title_format_short = TITLE - Uzbl browser <NAME>
71 set title_format_long = KEYCMD MODE TITLE - Uzbl browser <NAME> > SELECTED_URI
72 # set the characters to use for, and the width of the progress bar
73 set status_pbar_done  = *
74 set status_pbar_pending = -
75 set status_pbar_width = 12
76 set insert_indicator = I
77 set command_indicator = C
78 set modkey = Mod1
79 # reset to command mode when new page is loaded
80 set reset_command_mode = 1
81 # this var has precedence over reset_command_mode
82 set always_insert_mode = 0
83
84 # to start a local socks server, do : ssh -fND localhost:8118 localhost
85 #set  proxy_url       = http://127.0.0.1:8118
86 #values 0-3
87 #set  http_debug      = 0
88 #set  useragent       = uzbl (Webkit WEBKIT_MAJOR.WEBKIT_MINOR.WEBKIT_MICRO)
89 # Example user agent containing everything:
90 set  useragent       = Uzbl (Webkit WEBKIT_MAJOR.WEBKIT_MINOR.WEBKIT_MICRO) (SYSNAME NODENAME KERNREL KERNVER ARCH_SYSTEM [ARCH_UZBL]) (Commit COMMIT)
91 #set  max_conns       = 0
92 #set  max_conns_host  = 0
93
94 set fifo_dir = /tmp
95 set socket_dir = /tmp
96
97 # Key bindings
98 bind    j         = scroll_vert 20
99 bind    k         = scroll_vert -20
100 bind    h         = scroll_horz -20
101 bind    l         = scroll_horz 20
102 bind    <<        = scroll_begin
103 bind    >>        = scroll_end
104 bind    b         = back
105 bind    m         = forward
106 bind    S         = stop
107 bind    r         = reload
108 bind    R         = reload_ign_cache
109 bind    +         = zoom_in
110 bind    -         = zoom_out
111 bind    T         = toggle_zoom_type
112 bind    1         = sh "echo set zoom_level = 1.0 > $4"
113 bind    2         = sh "echo set zoom_level = 2.0 > $4"
114 bind    t         = toggle_status
115 # Hilight matches. Notice the * after the slash - it makes the command incremental, i.e. gets called
116 # on every character you type.  You can do `bind /_ = search %s' if you want it less interactive.
117 bind    /*        = search %s
118 bind    ?*        = search_reverse %s
119 #jump to next
120 bind    n         = search
121 bind    N         = search_reverse
122 bind    gh        = uri http://www.uzbl.org
123
124 # like this you can enter any command at runtime, interactively. prefixed by ':'
125 bind    :_        = chain '%s'
126
127 # shortcut to set the uri. TODO: i think we can abandon the uri command in favor of 'set uri = ..'
128 bind    o _       = uri %s
129 # shortcut to set variables
130 bind    s _       = set %s
131 bind    \wiki _   = uri http://wiki.archlinux.org/index.php/Special:Search?search=%s&go=Go
132 bind    gg _      = uri http://www.google.com/search?q=%s
133 bind    i         = toggle_insert_mode
134 # disable insert mode (1 to enable).  note that Esc works to disable, regardless of this setting
135 bind    I         = toggle_insert_mode 0
136 # Enclose the executable in quotes if it has spaces.  Any additional parameters you use will
137 # appear AFTER the default parameters
138 bind    B         = spawn $XDG_DATA_HOME/uzbl/scripts/insert_bookmark.sh
139 bind    U         = spawn $XDG_DATA_HOME/uzbl/scripts/load_url_from_history.sh
140 bind    u         = spawn $XDG_DATA_HOME/uzbl/scripts/load_url_from_bookmarks.sh
141 # with the sample yank script, you can yank one of the arguments into clipboard/selection
142 bind    yurl      = spawn $XDG_DATA_HOME/uzbl/scripts/yank.sh 6 primary
143 bind    ytitle    = spawn $XDG_DATA_HOME/uzbl/scripts/yank.sh 7 clipboard
144 # does the same as yurl but without needing a script
145 bind    y2url     = sh 'echo -n $6 | xclip'
146 # go the page from primary selection
147 bind    p         = sh 'echo "uri `xclip -selection primary -o`" > $4'
148 # go to the page in clipboard
149 bind    P         = sh 'echo "uri `xclip -selection clipboard -o`" > $4'
150 # start a new uzbl instance from the page in primary selection
151 bind    'p        = sh 'exec uzbl --uri $(xclip -o)'
152 bind    ZZ        = exit
153 bind    Xs         = js alert("hi");
154 # example showing how to use sh
155 # it sends a command to the fifo, whose path is told via a positional param
156 # if fifo_dir is not set, it'll echo to a file named (null) somewhere >:) remember to delete it
157 # The body of the shell command should be one parameter, so if it has spaces like here,
158 # you must enclose it in quotes.  Remember to escape (and double-escape) quotes and backslashes
159 # in the body.  Any additional parameters you use will appear AFTER the default parameters (cfg file
160 # path, fifo & socket dirs, etc.)
161 bind    XS        = sh 'echo "js alert (\\"This is sent by the shell via a fifo\\")" > "$4"'
162
163 bind    !dump     = sh "echo dump_config > $4"
164 bind    !reload   = sh 'cat $1 > $4'
165
166 # this script allows you to configure (per domain) values to fill in form fields (eg login information) and to fill in these values automatically
167 bind za = spawn $XDG_DATA_HOME/uzbl/scripts/formfiller.sh
168 bind ze = spawn $XDG_DATA_HOME/uzbl/scripts/formfiller.sh edit
169 bind zn = spawn $XDG_DATA_HOME/uzbl/scripts/formfiller.sh new
170 bind zl = spawn $XDG_DATA_HOME/uzbl/scripts/formfiller.sh load
171
172 # other - more advanced - implementation using perl: (could not get this to run - Dieter )
173 bind LL = spawn $XDG_DATA_HOME/uzbl/scripts/formfiller.pl load
174 bind LN = spawn $XDG_DATA_HOME/uzbl/scripts/formfiller.pl new
175 bind LE = spawn $XDG_DATA_HOME/uzbl/scripts/formfiller.pl edit
176
177 # we ship some javascripts to do keyboard based link hinting/following.  (webkit does not have C DOM bindings yet)
178 # this is similar to how it works in vimperator (and konqueror)
179 # TODO: did we resolve: "no click() event for hyperlinks so no referrer set" ?
180 #hit F to toggle the Hints (now in form of link numbering)
181 bind    F = script $XDG_DATA_HOME/uzbl/scripts/hint.js
182 # the most stable version:
183 bind    fl* = script $XDG_DATA_HOME/uzbl/scripts/follow_Numbers.js %s
184 # using strings, not polished yet:
185 bind    fL* = script $XDG_DATA_HOME/uzbl/scripts/follow_Numbers_Strings.js %s
186
187 # you can use this to disable all plugins
188 set disable_plugins = 0
189
190 set icon = ./uzbl.png
191
192 # "home" page if you will
193 set uri = uzbl.org