dmenu -i in example scripts
authorDieter Plaetinck <dieter@plaetinck.be>
Wed, 29 Apr 2009 17:51:15 +0000 (19:51 +0200)
committerDieter Plaetinck <dieter@plaetinck.be>
Wed, 29 Apr 2009 17:51:15 +0000 (19:51 +0200)
examples/scripts/load_url_from_bookmarks.sh
examples/scripts/load_url_from_history.sh

index ca512eb..9b991c8 100755 (executable)
@@ -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
index 366aedf..8978daa 100755 (executable)
@@ -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