aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/scripts
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-29 19:51:15 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-29 19:51:15 +0200
commit3893863e204466b73939fcbeae1a714679a04aad (patch)
tree75bd1224349d503fb07e291a0d411e444877fb9b /examples/scripts
parentc66350c87517baec0c694646a8b64363c1183d76 (diff)
dmenu -i in example scripts
Diffstat (limited to 'examples/scripts')
-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 ca512eb..9b991c8 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" ] && echo "uri $goto" > $4
diff --git a/examples/scripts/load_url_from_history.sh b/examples/scripts/load_url_from_history.sh
index 366aedf..8978daa 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" ] && echo "uri $goto" > $4