diff options
author | mono-b <monoblanco@DRAINERDOMAIN.localdomain> | 2022-12-18 23:00:24 -0300 |
---|---|---|
committer | mono-b <monoblanco@DRAINERDOMAIN.localdomain> | 2022-12-18 23:00:24 -0300 |
commit | 0a043dbb7259cc59ac56b31573469f445a7921ed (patch) | |
tree | 28e87b1b7bbc035fbc467d5a7fc63204960dc247 /rofibooks.sh |
up
Diffstat (limited to 'rofibooks.sh')
-rwxr-xr-x | rofibooks.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rofibooks.sh b/rofibooks.sh new file mode 100755 index 0000000..40cd72e --- /dev/null +++ b/rofibooks.sh @@ -0,0 +1,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 |