summaryrefslogtreecommitdiffstats
path: root/.local/bin/opendoc
blob: 5641763b51cca3d6f8be60d02efd8a7a1ca0234d (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash

cd ~/library/ || exit 1
file=$(find . \( -iname '*.pdf' -or -iname '*djvu' \) -type f \
  -printf '%P\n' | sort | dmenu -i -l 10)
if test -f "$file"; then
  zathura "$file" &
fi