aboutsummaryrefslogtreecommitdiff
path: root/document-picker.sh
blob: c6509c331e6c418f1a644cf66e836751479c35bd (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 15 -p "Documents:")

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

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