aboutsummaryrefslogtreecommitdiff
path: root/dmenu-bookmarks
blob: 4b85367bdcd6fa49808e4b3b31c5628342b97c10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# A bookmark browser based on dmenu

# Usage: dmenu-bookmarks [picker options...]

# Requires: dmenu-filepicker (or similar), open-url

dir=$HOME/box/bookmarks
picker="dmenu-filepicker"

$picker "$@" "$dir" | while read -r line; do
	cat "$line"
done | xargs open-url

Generated with cgit - Back to sebastiano.tronto.net