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" echo "$($picker "$@" $dir)" | while read line; do cat "$line" done | xargs open-url
Generated with cgit - Back to sebastiano.tronto.net