aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-29 19:14:40 +0100
committerGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-29 19:14:40 +0100
commit2668b7723dff9460bb2b4ca842025c8ad6dae753 (patch)
treeaf7fbb1e97d3901a58c3ea9dba15fcb18756aae9 /examples
parent353aefa427b0153fe1db25781771bf1c52fab4d6 (diff)
parente0e74bb34d1ce7ff52f28fccb4f0c7bdf6740e92 (diff)
Merge branch 'dieter/experimental' into experimental
Conflicts: examples/scripts/load_url_from_bookmarks.sh examples/scripts/load_url_from_history.sh
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/scripts/load_url_from_bookmarks.sh2
-rwxr-xr-xexamples/scripts/load_url_from_history.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/scripts/load_url_from_bookmarks.sh b/examples/scripts/load_url_from_bookmarks.sh
index 7dffafe..428695b 100755
--- a/examples/scripts/load_url_from_bookmarks.sh
+++ b/examples/scripts/load_url_from_bookmarks.sh
@@ -8,5 +8,5 @@ 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.
+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" ] && uzblctrl -s $4 -c "uri $goto"
diff --git a/examples/scripts/load_url_from_history.sh b/examples/scripts/load_url_from_history.sh
index 08cf413..ec8334d 100755
--- a/examples/scripts/load_url_from_history.sh
+++ b/examples/scripts/load_url_from_history.sh
@@ -2,5 +2,5 @@
# 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`
+goto=`awk '{print $3}' $history_file | sort | uniq | dmenu -i`
[ -n "$goto" ] && uzblctrl -s $4 -c "uri $goto"