aboutsummaryrefslogtreecommitdiff
path: root/dmenu-urlselect
blob: e19ec7b8143013ceb1217e01c74dbfceb1f12439 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# Finds all URLs in stdin and prompts a dmenu choice, then writes the selected
# url to stdout.
# Requires: dmenu (or similar), urlgrep

menu=${MENU:-dmenu}
menuopts="-l 20"

urlgrep | $menu $menuopts

Generated with cgit - Back to sebastiano.tronto.net