6 lines
171 B
Plaintext
6 lines
171 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Simple dmenu scipt to open a buku bookmark in a browser
|
||
|
|
||
|
buku --nostdin -p -f5 | dmenu -p "Search bookmark: " -i -l 10 | cut -f1 | xargs -r buku --nostdin -o
|