dots

Dotfiles for Linux
git clone https://git.ckiri.com/cmk/dots.git
Log | Files | Refs | README

openpdf.sh (129B)


      1 #!/bin/sh
      2 #
      3 # Open PDFs using zathura
      4 
      5 file=$(find ~/docs -name "*.pdf" | wmenu -l 20)
      6 test -z "$file" && exit 1
      7 zathura "$file"