aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/scripts/load_url_from_history.sh
blob: cab4529fd8a2627848aaef76a65f31b1557c0ce2 (plain)
1
2
3
4
5
6
7
#!/bin/bash
# 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 -i`
#[ -n "$goto" ] && echo "uri $goto" > $4
[ -n "$goto" ] && uzblctrl -s $4 -c "uri $goto"