aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/configs/sampleconfig3
-rw-r--r--examples/configs/sampleconfig-dev3
-rwxr-xr-xexamples/scripts/download.sh2
-rwxr-xr-xexamples/scripts/history.sh2
-rwxr-xr-xexamples/scripts/load_url_from_bookmarks.sh5
-rwxr-xr-xexamples/scripts/load_url_from_history.sh5
6 files changed, 14 insertions, 6 deletions
diff --git a/examples/configs/sampleconfig b/examples/configs/sampleconfig
index d2991af..4cba098 100644
--- a/examples/configs/sampleconfig
+++ b/examples/configs/sampleconfig
@@ -14,10 +14,12 @@
history_handler = /bin/bash /usr/share/uzbl/examples/scripts/history.sh
download_handler = /bin/bash /usr/share/uzbl/examples/scripts/download.sh
fifo_dir = /tmp
+socket_dir = /tmp
always_insert_mode = 0
modkey = Mod1
show_status = 1
status_top = 0
+home_page = http://www.uzbl.org
[bindings]
b = back
@@ -32,6 +34,7 @@ w = follow_link_new_window
+ = zoom_in
- = zoom_out
t = toggle_status
+k = exit
B = spawn /bin/bash /usr/share/uzbl/examples/scripts/insert_bookmark.sh
u = spawn /bin/bash /usr/share/uzbl/examples/scripts/load_url_from_history.sh
U = spawn /bin/bash /usr/share/uzbl/examples/scripts/load_url_from_bookmarks.sh
diff --git a/examples/configs/sampleconfig-dev b/examples/configs/sampleconfig-dev
index 4caa9ff..9413732 100644
--- a/examples/configs/sampleconfig-dev
+++ b/examples/configs/sampleconfig-dev
@@ -14,10 +14,12 @@
history_handler = /bin/bash ./examples/scripts/history.sh
download_handler = /bin/bash ./examples/scripts/download.sh
fifo_dir = /tmp
+socket_dir = /tmp
always_insert_mode = 0
modkey = Mod1
show_status = 1
status_top = 0
+home_page = http://www.uzbl.org
[bindings]
b = back
@@ -32,6 +34,7 @@ w = follow_link_new_window
+ = zoom_in
- = zoom_out
t = toggle_status
+k = exit
B = spawn /bin/bash ./examples/scripts/insert_bookmark.sh
u = spawn /bin/bash ./examples/scripts/load_url_from_history.sh
U = spawn /bin/bash ./examples/scripts/load_url_from_bookmarks.sh
diff --git a/examples/scripts/download.sh b/examples/scripts/download.sh
index ff3d8db..41c408e 100755
--- a/examples/scripts/download.sh
+++ b/examples/scripts/download.sh
@@ -1,2 +1,2 @@
#!/bin/bash
-wget $5
+wget $6
diff --git a/examples/scripts/history.sh b/examples/scripts/history.sh
index 03c568a..b6671fe 100755
--- a/examples/scripts/history.sh
+++ b/examples/scripts/history.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#TODO: strip 'http://' part
# you probably really want this in your $XDG_DATA_HOME (eg $HOME/.local/share/uzbl/history)
-echo "$7 $5" >> /tmp/uzbl.history
+echo "$8 $6" >> /tmp/uzbl.history
diff --git a/examples/scripts/load_url_from_bookmarks.sh b/examples/scripts/load_url_from_bookmarks.sh
index ca512eb..2a893bf 100755
--- a/examples/scripts/load_url_from_bookmarks.sh
+++ b/examples/scripts/load_url_from_bookmarks.sh
@@ -8,5 +8,6 @@ else
file=./examples/bookmarks #useful when developing
fi
-goto=`awk '{print $1}' $file | dmenu` #NOTE: it's the job of the script that inserts bookmarks to make sure there are no dupes.
-[ -n "$goto" ] && echo "uri $goto" > $4
+goto=`awk '{print $1}' $file | dmenu -i` #NOTE: it's the job of the script that inserts bookmarks to make sure there are no dupes.
+#[ -n "$goto" ] && echo "uri $goto" > $4
+[ -n "$goto" ] && uzblctrl -s $5 -c "uri $goto"
diff --git a/examples/scripts/load_url_from_history.sh b/examples/scripts/load_url_from_history.sh
index 366aedf..81a220a 100755
--- a/examples/scripts/load_url_from_history.sh
+++ b/examples/scripts/load_url_from_history.sh
@@ -2,5 +2,6 @@
# you probably really want this in your $XDG_DATA_HOME (eg $HOME/.local/share/uzbl/history)
history_file=/tmp/uzbl.history
-goto=`awk '{print $3}' $history_file | sort | uniq | dmenu`
-[ -n "$goto" ] && echo "uri $goto" > $4
+goto=`awk '{print $3}' $history_file | sort | uniq | dmenu -i`
+#[ -n "$goto" ] && echo "uri $goto" > $4
+[ -n "$goto" ] && uzblctrl -s $5 -c "uri $goto"