#!/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