summaryrefslogtreecommitdiff
path: root/rofibooks.sh
blob: 40cd72e0c02683ed5145bdeb1a19bf35070f780f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

seleccion=$(find $HOME/stf/books/ -mindepth 2 -type f |
            cut -d "/" -f 6-                                 |
	        awk '{ printf $0 "\n" }'                         |
            rofi -dmenu -font "Iosevka Nerd Font 12" -p "Book")

case $seleccion in
*.pdf)	zathura "$HOME/stf/books/$seleccion" ;;
*.epub)	zathura "$HOME/stf/books/$seleccion" ;;
*.odt) libreoffice "$HOME/stf/books/$seleccion" ;;
esac