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