Replaced FIFO interface with socket.
[uzbl-mobile] / examples / scripts / load_url_from_history.sh
1 #!/bin/bash
2 # you probably really want this in your $XDG_DATA_HOME (eg $HOME/.local/share/uzbl/history)
3 history_file=/tmp/uzbl.history
4
5 goto=`awk '{print $3}' $history_file | sort | uniq | dmenu`
6 [ -n "$goto" ] && uzblctrl -s $4 -c "uri $goto"