aboutsummaryrefslogtreecommitdiff
path: root/document-picker.sh
blob: c4689bc6934e53cacec9e2c69cc1d39485034e96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Utility for opening documents using dmenu.

DOCS="$HOME/documents"

choice=$(find "$DOCS" -type f 2>/dev/null \
    | sed "s|^$DOCS/||" \
    | dmenu -i -l 5 -p "Documents:")

[ -z "$choice" ] && exit 0

xdg-open "$DOCS/$choice" >/dev/null 2>&1 &