aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/scripts/load_url_from_history.sh
blob: 08cf413d9f7010482d98dbeb09575b846ab2a546 (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`
[ -n "$goto" ] && uzblctrl -s $4 -c "uri $goto"