summaryrefslogtreecommitdiff
path: root/dmenu_books
blob: beb87cc13ad201be1d49f3908793b1b6cdb895ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

printhelp () {
  exit
}

while getopts "hwxd:" o; do case "${o}" in
  w) DMENU="tofi" ;;
  x) DMENU="dmenu" ;;
  d) ARGS="$ARGS$OPTARG " ;;
  *) printhelp ;;
esac done

BOOK=`ls ~/Documents/shared | $DMENU $ARGS`

[ -z "$BOOK" ] && exit 1

zathura "~/Documents/shared/$BOOK"