aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHECKLIST5
-rw-r--r--examples/configs/sampleconfig17
-rw-r--r--examples/configs/sampleconfig-dev13
3 files changed, 20 insertions, 15 deletions
diff --git a/CHECKLIST b/CHECKLIST
index 26f733f..292306c 100644
--- a/CHECKLIST
+++ b/CHECKLIST
@@ -10,7 +10,8 @@ Also testers and interested people can use this list to see what uzbl is about,
* fifo: type this in your shell after starting uzbl:
echo 'uri http://www...' > <fifo path here>'
where <fifo path> is printed on stdout during program startup. Also "back" , "forward", "refresh" (basically all actions defined in `static Command commands` should behave as expected)
- -> temporarily changed to socket io with uzblctrl. see examples in scripts
+ ^^ TEMPORARILY BROKEN
+* socket: uzblctrl -s <socketname> -c <command> (same commands as with fifo)
* history logging: the script as defined in sample config should write history entries (date,time, url) into the file defined in the script (by default ./extra/history.sh and /tmp/uzbl.history)
* invocations of external commands: you'll see it on stdout everytime uzbl calls an external script/program. the invocations should work and none of the arguments passed should be null/garbage/.. .
all should be valid strings and contain things like the pid, fifo file, config file,.. (see README for details).
@@ -29,3 +30,5 @@ Also testers and interested people can use this list to see what uzbl is about,
* commands with parameters: any key sequence that ends with underscore _ expects parameter. Undersore marks exact location where parameter begins. Command part can have %s that will be replaced with parameter.
:o _ = uri %s - user needs to type :o www.google.com
:O_ = uri %s - user needs to type :Owww.google.com
+* when typing command, press insert (paste X cliboard) or shift insert (paste primary selection buffer)
+* proxy and other network settings can be set in config \ No newline at end of file
diff --git a/examples/configs/sampleconfig b/examples/configs/sampleconfig
index 7b88682..2870cf7 100644
--- a/examples/configs/sampleconfig
+++ b/examples/configs/sampleconfig
@@ -22,33 +22,36 @@ status_top = 0
[bindings]
# scroll down/up/left/right
-j = scroll_vert 20
-k = scroll_vert -20
-h = scroll_horz -20
-l = scroll_horz 20
+j = scroll_vert 20
+k = scroll_vert -20
+h = scroll_horz -20
+l = scroll_horz 20
b = back
m = forward
s = stop
r = refresh
R = reload
-gh = uri http://www.uzbl.org
f = follow_link_here
F = follow_link_new_tab
w = follow_link_new_window
+ = zoom_in
- = zoom_out
t = toggle_status
-ZZ = exit
+gh = uri http://www.uzbl.org
+o _ = uri %s
+:wiki _ = uri http://wiki.archlinux.org/index.php/Special:Search?search=%s&go=Go
+gg _ = uri http://www.google.com/search?q=%s
i = insert_mode
B = spawn /usr/share/uzbl/examples/scripts/insert_bookmark.sh
u = spawn /usr/share/uzbl/examples/scripts/load_url_from_history.sh
U = spawn /usr/share/uzbl/examples/scripts/load_url_from_bookmarks.sh
+ZZ = exit
[network]
proxy_server =
#values 0-3
-http_debug = 1
+http_debug = 0
user-agent = uzbl
max_conns =
max_conns_per_host =
diff --git a/examples/configs/sampleconfig-dev b/examples/configs/sampleconfig-dev
index e9c9cc1..2948ff0 100644
--- a/examples/configs/sampleconfig-dev
+++ b/examples/configs/sampleconfig-dev
@@ -21,7 +21,7 @@ show_status = 1
status_top = 0
[bindings]
-## scroll down/up/left/right
+# scroll down/up/left/right
j = scroll_vert 20
k = scroll_vert -20
h = scroll_horz -20
@@ -31,22 +31,21 @@ m = forward
s = stop
r = refresh
R = reload
-gh = uri http://www.uzbl.org
f = follow_link_here
F = follow_link_new_tab
w = follow_link_new_window
+ = zoom_in
- = zoom_out
t = toggle_status
-ZZ = exit
+gh = uri http://www.uzbl.org
+o _ = uri %s
+:wiki _ = uri http://wiki.archlinux.org/index.php/Special:Search?search=%s&go=Go
+gg _ = uri http://www.google.com/search?q=%s
i = insert_mode
B = spawn ./examples/scripts/insert_bookmark.sh
u = spawn ./examples/scripts/load_url_from_history.sh
U = spawn ./examples/scripts/load_url_from_bookmarks.sh
-#parameter command examples (all need space but can be removed from individual commands). underscore is important.
-o _ = uri %s
-:wiki _ = uri http://wiki.archlinux.org/index.php/Special:Search?search=%s&go=Go
-gg _ = uri http://www.google.com/search?q=%s
+ZZ = exit
[network]
# to start a local socks server, do : ssh -fND localhost:8118 localhost